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

2012-11-15  Matthias Klose  <doko@ubuntu.com>

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

From-SVN: r193529
This commit is contained in:
Matthias Klose 2012-11-15 11:58:42 +00:00 committed by Matthias Klose
parent d28bdb60d7
commit 9eae39049b
2 changed files with 10 additions and 4 deletions

View 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

View 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
# ------------------------