diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-11-29 13:45:14 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-25 12:43:30 (GMT) |
commit | 3ebc431569aa6566389f3f3fc00aae7b8a90e58b (patch) | |
tree | e59bed151a81a7365951d20ec775adb6aafbc781 | |
parent | f8a86910e4cd1d98993bd6991eb1b1aff7a86b05 (diff) | |
download | Doxygen-3ebc431569aa6566389f3f3fc00aae7b8a90e58b.zip Doxygen-3ebc431569aa6566389f3f3fc00aae7b8a90e58b.tar.gz Doxygen-3ebc431569aa6566389f3f3fc00aae7b8a90e58b.tar.bz2 |
Removed bash specific construct from ./configure script to make it work on Solaris
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |