Strip -g from CFLAGS

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@8324 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2000-12-14 18:15:37 +00:00
parent 9de1dd02c8
commit e3e780e5c1
3 changed files with 156 additions and 142 deletions

View file

@ -1,3 +1,7 @@
2000-12-14 Adam Fedor <fedor@gnu.org>
* configure.in (CFLAGS): Strip -g (debug=yes adds that automatically).
2000-12-13 Adam Fedor <fedor@gnu.org>
* configure: Fix mistaken setting of CPPFLAGS from CFLAGS.

289
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -200,6 +200,11 @@ if test "$TAR" = ""; then
TAR=tar
fi
#--------------------------------------------------------------------
# Strip '-g' off of CFLAGS, since debug=yes adds that anyway
#--------------------------------------------------------------------
CFLAGS=`echo $CFLAGS | sed -e 's/-g //'`
#--------------------------------------------------------------------
# Miscellaneous headers (for make programs only)
#--------------------------------------------------------------------