diff options
author | Dave Korn <dave.korn.cygwin@gmail.com> | 2009-09-24 12:05:45 +0000 |
---|---|---|
committer | Dave Korn <davek@gcc.gnu.org> | 2009-09-24 12:05:45 +0000 |
commit | 42b9d34f0e196ec212eecf9f94c41c731072849f (patch) | |
tree | bcac408a6bda1c34883da2c9d4e0bc108800f7a4 /gcc/ada/gcc-interface | |
parent | 01c3cf4d51cfe3c30cb6e04c895f1c1be0fcd837 (diff) | |
download | gcc-42b9d34f0e196ec212eecf9f94c41c731072849f.tar.gz |
Makefile.in (LIBGNAT_TARGET_PAIRS): Simplify test for a-except% in target pairs list...
* gcc-interface/Makefile.in (LIBGNAT_TARGET_PAIRS): Simplify test for
a-except% in target pairs list; don't (implicitly) compare whitespace.
From-SVN: r152116
Diffstat (limited to 'gcc/ada/gcc-interface')
-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 bc2ad926eff..cf717ac39cd 100644 --- a/gcc/ada/gcc-interface/Makefile.in +++ b/gcc/ada/gcc-interface/Makefile.in @@ -2128,7 +2128,7 @@ endif # These base versions lack Ada 2005 additions which would cause bootstrap # problems if included in the compiler and other basic tools. -ifeq ($(filter-out a-except%,$(LIBGNAT_TARGET_PAIRS)),$(LIBGNAT_TARGET_PAIRS)) +ifeq ($(filter a-except%,$(LIBGNAT_TARGET_PAIRS)),) LIBGNAT_TARGET_PAIRS += \ a-except.ads<a-except-2005.ads \ a-except.adb<a-except-2005.adb |