diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-26 14:12:59 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-26 14:12:59 -0400 |
commit | 0ed57916cfcf103a141e5edfd75bf547c03c04ad (patch) | |
tree | 58c563320f77ebcaf73195604eed6bfbe96d1aa4 | |
parent | e323171147d4984e5c1d761dc5c7110821c3758f (diff) | |
download | fork-ledger-0ed57916cfcf103a141e5edfd75bf547c03c04ad.tar.gz fork-ledger-0ed57916cfcf103a141e5edfd75bf547c03c04ad.tar.bz2 fork-ledger-0ed57916cfcf103a141e5edfd75bf547c03c04ad.zip |
Fixed a system-specific issue in acprep
-rwxr-xr-x | acprep | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -244,7 +244,9 @@ while [ -n "$1" ]; do LDFLAGS="-L/usr/local/stow/cppunit-debug/lib $LDFLAGS" # I build my debug Boost libs with _GLIBCXX_DEBUG - BOOST_SUFFIX="-xgcc40-d-$BOOST_VERSION" + if [ -f /usr/local/lib/libboost_regex-xgcc40-d-1_38.a ]; then + BOOST_SUFFIX="-xgcc40-d-$BOOST_VERSION" + fi else CPPFLAGS="-isystem /usr/local/stow/cppunit/include $CPPFLAGS" |