Commit 3ebc4315 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Removed bash specific construct from ./configure script to make it work on Solaris

parent f8a86910
...@@ -555,8 +555,8 @@ fi ...@@ -555,8 +555,8 @@ fi
if test "$f_libclang" = YES; then if test "$f_libclang" = YES; then
printf " Checking for libclang ... " printf " Checking for libclang ... "
if llvm-config --version > /dev/null 2>&1; then if llvm-config --version > /dev/null 2>&1; then
libclang_hdr_dir=$(llvm-config --includedir) libclang_hdr_dir=`llvm-config --includedir`
libclang_lib_dir=$(llvm-config --libdir) libclang_lib_dir=`llvm-config --libdir`
else else
libclang_hdr_dir="/usr/include /usr/local/include /opt/local/include" 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" libclang_lib_dir="/usr/lib /usr/local/lib /opt/local/lib /usr/lib64/llvm /usr/lib/llvm"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment