diff options
author | DJ Delorie <dj@redhat.com> | 2003-02-21 01:55:12 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2003-02-21 01:55:12 +0000 |
commit | 3decd77d89d2bcdc38a46b1ee37d74a7d7c66f3f (patch) | |
tree | 28529a2970bea6b6a7af45b71e8a597745553fb9 /Makefile.tpl | |
parent | 4938384a1f22b28db51c5a483c4b5a4e0405be21 (diff) | |
download | gdb-3decd77d89d2bcdc38a46b1ee37d74a7d7c66f3f.zip gdb-3decd77d89d2bcdc38a46b1ee37d74a7d7c66f3f.tar.gz gdb-3decd77d89d2bcdc38a46b1ee37d74a7d7c66f3f.tar.bz2 |
* Makefile.tpl: Add definition of CPPFLAGS to pass into
configure-target-* as some target builds may require additional
flags for preprocessor tests.
* Makefile.in: Regenerated.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r-- | Makefile.tpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index a174e3a..21f7484 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -987,7 +987,8 @@ configure-target-[+module+]: $(TARGET_SUBDIR)/[+module+]/multilib.out AR="$(AR_FOR_TARGET)"; export AR; \ AS="$(AS_FOR_TARGET)"; export AS; \ CC="$(CC_FOR_TARGET)"; export CC; \ - CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \[+ + CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \ + CPPFLAGS="$(CFLAGS_FOR_TARGET)"; export CPPFLAGS; \[+ IF raw_cxx +] CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \ CXX="$(RAW_CXX_FOR_TARGET)"; export CXX; \[+ |