diff options
author | Dominique d'Humieres <dominiq@lps.ens.fr> | 2013-09-13 21:39:11 +0000 |
---|---|---|
committer | Olivier Hainque <hainque@gcc.gnu.org> | 2013-09-13 21:39:11 +0000 |
commit | c3226f662e5394b906d430a91372c168c9897982 (patch) | |
tree | efb862ce8bbd8c7c8df32d727090eec383c5632b /gcc/ada | |
parent | 2fce28ed64e0db40509499e1992953859a9e57f8 (diff) | |
download | gcc-c3226f662e5394b906d430a91372c168c9897982.zip gcc-c3226f662e5394b906d430a91372c168c9897982.tar.gz gcc-c3226f662e5394b906d430a91372c168c9897982.tar.bz2 |
Fix thinko in the late conversion to the use of configure variables for
the target pairs selection:
* gcc-interface/Makefile.in: Fix darwin Filter to match on $target_os,
not target_cpu.
From-SVN: r202578
Diffstat (limited to 'gcc/ada')
-rw-r--r-- | gcc/ada/gcc-interface/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/gcc-interface/Makefile.in b/gcc/ada/gcc-interface/Makefile.in index b851683..4fd3682 100644 --- a/gcc/ada/gcc-interface/Makefile.in +++ b/gcc/ada/gcc-interface/Makefile.in @@ -2190,7 +2190,7 @@ ifeq ($(strip $(filter-out %x32 linux%,$(target_cpu) $(target_os))),) endif # Darwin (Mac OS X) -ifeq ($(strip $(filter-out darwin%,$(target_cpu))),) +ifeq ($(strip $(filter-out darwin%,$(target_os))),) SO_OPTS = -shared-libgcc LIBGNAT_TARGET_PAIRS = \ a-intnam.ads<a-intnam-darwin.ads \ |