summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-07-25 11:33:57 -0600
committerTom Tromey <tromey@redhat.com>2013-07-25 11:33:57 -0600
commitac7d3fcd2b10d5c48246f30a1fbbe82c5fd2d2c7 (patch)
treebedb6e4cc05a48688106e76748959b91befb39fb
parent2dfaeb2cf493a044c55ba2cad747e0053fd7b2f8 (diff)
downloadgcc-ac7d3fcd2b10d5c48246f30a1fbbe82c5fd2d2c7.tar.gz
fix thinko in the DRIVER_DEFINES / SHLIB patchtromey/auto-dependency-checking
-rw-r--r--gcc/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 5cbb076adcf..4a256d583ea 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1955,7 +1955,7 @@ DRIVER_DEFINES = \
-DTOOLDIR_BASE_PREFIX=\"$(libsubdir_to_prefix)$(prefix_to_exec_prefix)\" \
@TARGET_SYSTEM_ROOT_DEFINE@ \
$(VALGRIND_DRIVER_DEFINES) \
- $(and $(SHLIB),$(filter-out yes,$(enable_shared)),-DENABLE_SHARED_LIBGCC) \
+ $(and $(SHLIB),$(filter yes,@enable_shared@),-DENABLE_SHARED_LIBGCC) \
-DCONFIGURE_SPECS="\"@CONFIGURE_SPECS@\""
CFLAGS-gcc.o += $(DRIVER_DEFINES)