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 /configure | |
parent | f7d86b5ca830ca95899ec5e1585359f9baf19238 (diff) | |
download | gcc-4f9438698143ae15df338ce085f765c1a5016b36.tar.gz |
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
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index f6027397ced..cde03b70052 100755 --- 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 |