diff mbox series

factor out common files for compare_exclusions

Message ID c87f9a42-2321-d96f-5c50-4ce7045a6168@debian.org
State New
Headers show
Series factor out common files for compare_exclusions | expand

Commit Message

Matthias Klose Dec. 11, 2019, 12:35 a.m. UTC
the toplevel configure.ac repeats common exclusion files for specific targets.
Just factor those out.  Maybe not required, but gm2 is adding more files to be
ignored on every target, so make it easy to only have these files mentioned in
one place. Ok for the trunk?

Matthias

Comments

Jeff Law Dec. 11, 2019, 6:53 p.m. UTC | #1
On Wed, 2019-12-11 at 01:35 +0100, Matthias Klose wrote:
> the toplevel configure.ac repeats common exclusion files for specific
> targets.
> Just factor those out.  Maybe not required, but gm2 is adding more
> files to be
> ignored on every target, so make it easy to only have these files
> mentioned in
> one place. Ok for the trunk?

> 2019-12-11  Matthias Klose  <doko@ubuntu.com>
> 
> 	* configure.ac: Factor out common cases for compare_exclusions.
> 	* configure: Regenerate.
OK.
jeff
diff mbox series

Patch

2019-12-11  Matthias Klose  <doko@ubuntu.com>

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

Index: configure.ac
===================================================================
--- configure.ac	(revision 279204)
+++ configure.ac	(working copy)
@@ -3628,8 +3628,8 @@ 
 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)