summaryrefslogtreecommitdiffstats
path: root/gcc
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2013-10-02 18:46:18 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2013-10-02 18:46:18 +0000
commit396044e4348bc990d832dbaa6a5d63c1e3946e7e (patch)
tree7232fab2b8a22665366fe577c9363045cfacc559 /gcc
parentb9c6afcdd29d83bf3477cb39a28c3066c82c9161 (diff)
downloadppe42-gcc-396044e4348bc990d832dbaa6a5d63c1e3946e7e.tar.gz
ppe42-gcc-396044e4348bc990d832dbaa6a5d63c1e3946e7e.zip
* Makefile.in (DRIVER_DEFINES): Use $(if), not $(and).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@203125 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/Makefile.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a64f5fc8d47..4578a605c25 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2013-10-02 Tom Tromey <tromey@redhat.com>
+
+ * Makefile.in (DRIVER_DEFINES): Use $(if), not $(and).
+
2013-10-02 Andrew MacLeod <amacleod@redhat.com>
* tree-flow.h: Remove some prototypes.
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index f55f1d15a9c..20516cb99f6 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1925,7 +1925,7 @@ DRIVER_DEFINES = \
-DTOOLDIR_BASE_PREFIX=\"$(libsubdir_to_prefix)$(prefix_to_exec_prefix)\" \
@TARGET_SYSTEM_ROOT_DEFINE@ \
$(VALGRIND_DRIVER_DEFINES) \
- $(and $(SHLIB),$(filter yes,@enable_shared@),-DENABLE_SHARED_LIBGCC) \
+ $(if $(SHLIB),$(if $(filter yes,@enable_shared@),-DENABLE_SHARED_LIBGCC)) \
-DCONFIGURE_SPECS="\"@CONFIGURE_SPECS@\""
CFLAGS-gcc.o += $(DRIVER_DEFINES)
OpenPOWER on IntegriCloud