From dde2f3eefa323b0904a53aded51552700de21f72 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 11 Apr 2007 12:44:42 -0400 Subject: Fix FS #6872- CFLAGS are not used Signed-off-by: Dan McGee --- scripts/makepkg.in | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/makepkg.in b/scripts/makepkg.in index cd0b8e6a..ba62a2db 100755 --- a/scripts/makepkg.in +++ b/scripts/makepkg.in @@ -901,7 +901,7 @@ else [ -d /usr/lib/distcc/bin ] && export PATH=/usr/lib/distcc/bin:$PATH elif [ "$(check_option distcc)" = "n" ]; then # if it is not wanted, clear the makeflags too - export MAKEFLAGS="" + MAKEFLAGS="" fi # use ccache if it is requested (check buildenv and PKGBUILD opts) @@ -911,7 +911,7 @@ else # clear user-specified makeflags if requested if [ "$(check_option makeflags)" = "n" ]; then - export MAKEFLAGS="" + MAKEFLAGS="" fi # build @@ -921,6 +921,11 @@ else unset LC_ALL LANG umask 0022 + # ensure CFLAGS and CXXFLAGS are used + export CFLAGS + export CXXFLAGS + export MAKEFLAGS + #check for "exit on syntax error" shell option echo $SHELLOPTS | grep errexit 2>&1 >/dev/null set_e=$? -- cgit v1.2.3