diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-12 22:46:56 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-12 22:46:56 -0400 |
commit | 62eee3d29a6f891c8d15195416cf285619746a3c (patch) | |
tree | 2bd1a6d8add57594ba7b67b8fd256f1ba70beab3 /acprep | |
parent | 09134d6e81a3396041b8e582f810ad75e880bd74 (diff) | |
download | fork-ledger-62eee3d29a6f891c8d15195416cf285619746a3c.tar.gz fork-ledger-62eee3d29a6f891c8d15195416cf285619746a3c.tar.bz2 fork-ledger-62eee3d29a6f891c8d15195416cf285619746a3c.zip |
Removed a bad variable setting in acprep
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -231,14 +231,12 @@ while [ -n "$1" ]; do CPPFLAGS="-isystem /usr/local/stow/cppunit/include $CPPFLAGS" LDFLAGS="-L/usr/local/stow/cppunit/lib $LDFLAGS" - - BOOST_SUFFIX="-xgcc40" fi # Do the same thing as --debug below SWITCHES="$SWITCHES --enable-debug" CXXFLAGS="$CXXFLAGS -g" - LDFLAGS="$LDFLAGS -g -prebind" + LDFLAGS="$LDFLAGS -g" # Warning flags CXXFLAGS="$CXXFLAGS -Wall -ansi -Winvalid-pch" |