]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
configure.ac: Factor out common cases for compare_exclusions.
authorMatthias Klose <doko@ubuntu.com>
Wed, 11 Dec 2019 20:59:35 +0000 (20:59 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Wed, 11 Dec 2019 20:59:35 +0000 (20:59 +0000)
2019-12-11  Matthias Klose  <doko@ubuntu.com>

        * configure.ac: Factor out common cases for compare_exclusions.
        * configure: Regenerate.

From-SVN: r279250

ChangeLog
configure
configure.ac

index 19b3c5eb229b3e57ded3431fcc8817769bb11a4a..7ed270176f4709d862c34a8bdfdfc9e3129931eb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-12-11  Matthias Klose  <doko@ubuntu.com>
+
+       * configure.ac: Factor out common cases for compare_exclusions.
+       * configure: Regenerate.
+
 2019-12-11  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
 
        * config-ml.in (msp430-*-*): Support --disable-no-exceptions configure
index f6027397cedd5c28cd821a0bc7629d6537393ecf..cde03b70052625a7e9beb188ff06d5b9d73a3b9f 100755 (executable)
--- a/configure
+++ b/configure
@@ -15442,8 +15442,8 @@ fi
 compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/*"
 case "$target" in
   hppa*64*-*-hpux*) ;;
-  hppa*-*-hpux*) compare_exclusions="gcc/cc*-checksum\$(objext) | */libgcc/lib2funcs* | gcc/ada/*tools/* | gcc/function-tests.o" ;;
-  powerpc*-ibm-aix*) compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/* | *libgomp*\$(objext)" ;;
+  hppa*-*-hpux*) compare_exclusions="$compare_exclusions | */libgcc/lib2funcs* | gcc/function-tests.o" ;;
+  powerpc*-ibm-aix*) compare_exclusions="$compare_exclusions | *libgomp*\$(objext)" ;;
 esac
 
 
index 50e2fa135b10486170f68ffa162dcbeee2adff90..df2af18f9bdc6a6de3458864f8e5d2d3db2ee875 100644 (file)
@@ -3628,8 +3628,8 @@ AC_SUBST(stage2_werror_flag)
 compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/*"
 case "$target" in
   hppa*64*-*-hpux*) ;;
-  hppa*-*-hpux*) compare_exclusions="gcc/cc*-checksum\$(objext) | */libgcc/lib2funcs* | gcc/ada/*tools/* | gcc/function-tests.o" ;;
-  powerpc*-ibm-aix*) compare_exclusions="gcc/cc*-checksum\$(objext) | gcc/ada/*tools/* | *libgomp*\$(objext)" ;;
+  hppa*-*-hpux*) compare_exclusions="$compare_exclusions | */libgcc/lib2funcs* | gcc/function-tests.o" ;;
+  powerpc*-ibm-aix*) compare_exclusions="$compare_exclusions | *libgomp*\$(objext)" ;;
 esac
 AC_SUBST(compare_exclusions)