On 29.11.2014 14:44, Dimitri van Heesch wrote: > Hi Dagobert, > >> On 28 Nov 2014, at 12:16 , Dagobert Michelsen <[email protected]> wrote: >> >> Hi Dimitri, >> >> I noticed the current „configure“ of doxygen is broken on my Solaris >> continuous integration: >>> >>> ./configure: syntax error at line 558: `libclang_hdr_dir=$' unexpected >>> >>> program finished with exit code 2 > > I think a bash specific construct has crept in. Can you check if changing > lines 558 and 559 by > > libclang_hdr_dir=`llvm-config --includedir` > libclang_lib_dir=`llvm-config --libdir` > > helps?
actually command substitution with $(...) is not a bashism but perfectly standard: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_03 it's just that /bin/sh on Solaris (at least in Solaris 10) is so lame that it doesn't implement it, only the inferior backtick `syntax` that won't nest. ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk _______________________________________________ Doxygen-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/doxygen-develop
