Fix FS #6872- CFLAGS are not used

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2007-04-11 12:44:42 -04:00
parent 1c2358532f
commit dde2f3eefa
1 changed files with 7 additions and 2 deletions

View File

@ -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=$?