diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-02 18:46:18 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-10-02 18:46:18 +0000 |
commit | 396044e4348bc990d832dbaa6a5d63c1e3946e7e (patch) | |
tree | 7232fab2b8a22665366fe577c9363045cfacc559 /gcc/Makefile.in | |
parent | b9c6afcdd29d83bf3477cb39a28c3066c82c9161 (diff) | |
download | gcc-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.in | 2 |
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) |