2007-12-08 Stefan Jahn <stefan@lkcc.org>

* configure.ac:  Fixed Debian bug #437876 (handling nostrip build
        option).
This commit is contained in:
ela 2007-12-08 21:32:39 +00:00
parent 2224f750d7
commit 26ff92c0fe
2 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2007-12-08 Stefan Jahn <stefan@lkcc.org>
* configure.ac: Fixed Debian bug #437876 (handling nostrip build
option).
2007-09-17 Stefan Jahn <stefan@lkcc.org>
* Loads of changes to avoid the "deprecated conversion from string

View File

@ -42,10 +42,11 @@ else
if test "x$GCC" = xyes; then
CFLAGS="`echo $CFLAGS | sed -e 's/\-g //g'`"
CXXFLAGS="`echo $CXXFLAGS | sed -e 's/\-g //g'`"
case $host_os in
*darwin*) LDFLAGS="$LDFLAGS" ;;
*) LDFLAGS="$LDFLAGS -s" ;;
esac
# disable stripping (debian bug #437876)
# case $host_os in
# *darwin*) LDFLAGS="$LDFLAGS" ;;
# *) LDFLAGS="$LDFLAGS -s" ;;
# esac
fi
fi
unset enable_debug