diff options
author | Matthias Klose <doko@ubuntu.com> | 2019-12-11 20:59:35 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2019-12-11 20:59:35 +0000 |
commit | 4f9438698143ae15df338ce085f765c1a5016b36 (patch) | |
tree | c40ce4608e6454e154c83cd3676172ddb631ae0c | |
parent | f7d86b5ca830ca95899ec5e1585359f9baf19238 (diff) | |
download | gcc-4f9438698143ae15df338ce085f765c1a5016b36.zip gcc-4f9438698143ae15df338ce085f765c1a5016b36.tar.gz gcc-4f9438698143ae15df338ce085f765c1a5016b36.tar.bz2 |
configure.ac: Factor out common cases for compare_exclusions.
2019-12-11 Matthias Klose <doko@ubuntu.com>
* configure.ac: Factor out common cases for compare_exclusions.
* configure: Regenerate.
From-SVN: r279250
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -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 @@ -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 diff --git a/configure.ac b/configure.ac index 50e2fa1..df2af18 100644 --- a/configure.ac +++ b/configure.ac @@ -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) |