summaryrefslogtreecommitdiff
path: root/gcc/Makefile.in
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/Makefile.in
parentb9c6afcdd29d83bf3477cb39a28c3066c82c9161 (diff)
downloadgcc-396044e4348bc990d832dbaa6a5d63c1e3946e7e.tar.gz
* 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/Makefile.in')
-rw-r--r--gcc/Makefile.in2
1 files changed, 1 insertions, 1 deletions
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)