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> 2007-09-17 Stefan Jahn <stefan@lkcc.org>
* Loads of changes to avoid the "deprecated conversion from string * Loads of changes to avoid the "deprecated conversion from string

View File

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