Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed bash specific construct from ./configure script to make it wo…
…rk on Solaris
  • Loading branch information
Dimitri van Heesch committed Dec 25, 2014
1 parent f8a8691 commit 3ebc431
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure
Expand Up @@ -555,8 +555,8 @@ fi
if test "$f_libclang" = YES; then
printf " Checking for libclang ... "
if llvm-config --version > /dev/null 2>&1; then
libclang_hdr_dir=$(llvm-config --includedir)
libclang_lib_dir=$(llvm-config --libdir)
libclang_hdr_dir=`llvm-config --includedir`
libclang_lib_dir=`llvm-config --libdir`
else
libclang_hdr_dir="/usr/include /usr/local/include /opt/local/include"
libclang_lib_dir="/usr/lib /usr/local/lib /opt/local/lib /usr/lib64/llvm /usr/lib/llvm"
Expand Down

0 comments on commit 3ebc431

Please sign in to comment.