]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in (if_multiarch): Don't use a GNU make 3.81 feature.
authorMatthias Klose <doko@ubuntu.com>
Thu, 15 Nov 2012 11:58:42 +0000 (11:58 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Thu, 15 Nov 2012 11:58:42 +0000 (11:58 +0000)
2012-11-15  Matthias Klose  <doko@ubuntu.com>

        * Makefile.in (if_multiarch): Don't use a GNU make 3.81 feature.

From-SVN: r193529

gcc/ChangeLog
gcc/Makefile.in

index c27ce1638db37c2cb424cd192b57b8f21cd21900..4481b6ff4986a7b631bdbeb839bdfb5a2ef07d02 100644 (file)
@@ -1,3 +1,7 @@
+2012-11-15  Matthias Klose  <doko@ubuntu.com>
+
+       * Makefile.in (if_multiarch): Don't use a GNU make 3.81 feature.
+
 2012-11-14  Jan Hubicka  <jh@suse.cz>
 
        PR bootstrap/55051
index fb2fd8657a399584c79a0e5ec991081402961135..ec13e2d5d1fc5a65f8a22425c67445f588a020e9 100644 (file)
@@ -535,11 +535,13 @@ enable_multiarch = @enable_multiarch@
 with_float = @with_float@
 ifeq ($(enable_multiarch),yes)
   if_multiarch = $(1)
-else ifeq ($(enable_multiarch),auto)
-  # SYSTEM_HEADER_DIR is makefile syntax, cannot be evaluated in configure.ac
-  if_multiarch = $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib/*/crti.o),$(1))
 else
-  if_multiarch =
+  ifeq ($(enable_multiarch),auto)
+    # SYSTEM_HEADER_DIR is makefile syntax, cannot be evaluated in configure.ac
+    if_multiarch = $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib/*/crti.o),$(1))
+  else
+    if_multiarch =
+  endif
 endif
 
 # ------------------------