diff options
author | Allan McRae <allan@archlinux.org> | 2011-12-22 11:19:18 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-05-21 01:58:17 +0200 |
commit | 8abef73ba99d183c191732686b4feab75a644b32 (patch) | |
tree | 7654ee62586deca92062babb5353b2dcbd0f5681 /scripts | |
parent | c4ea4e017fc35fe8c5057b86bab0a95dac75fc6f (diff) | |
download | pacman-8abef73ba99d183c191732686b4feab75a644b32.tar.gz pacman-8abef73ba99d183c191732686b4feab75a644b32.tar.xz |
makepkg: Add CPPFLAGS support
Add CPPFLAGS support in addition to the current CFLAGS and CXXFLAGS.
This keeps compiler flags split up in the same logical way done
everywhere else.
Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 44b1c2cb..28d9073d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -955,7 +955,7 @@ run_function() { # clear user-specified buildflags if requested if check_option "buildflags" "n"; then - unset CFLAGS CXXFLAGS LDFLAGS + unset CPPFLAGS CFLAGS CXXFLAGS LDFLAGS fi # clear user-specified makeflags if requested @@ -967,7 +967,7 @@ run_function() { cd_safe "$srcdir" # ensure all necessary build variables are exported - export CFLAGS CXXFLAGS LDFLAGS MAKEFLAGS CHOST + export CPPFLAGS CFLAGS CXXFLAGS LDFLAGS MAKEFLAGS CHOST # save our shell options so pkgfunc() can't override what we need local shellopts=$(shopt -p) |