Eric Blake <ebb9 <at> byu.net> writes:
>
> Committing this:
>
> 2007-09-13 Eric Blake <ebb9 <at> byu.net>
>
> Avoid parallel 'make check' issue.
> * tests/Makefile.am (mktests.stamp): New witness.
> (TESTSUITE_GENERATED_AT): Use it.
Bah. TESTSUITE_GENERATE_AT is distributed,
> (CLEANFILES): Clean the witness.
...so the witness needs to be as well. Checking in this followup.
2007-09-13 Eric Blake <[EMAIL PROTECTED]>
Clean up 'make dist' of previous patch.
* tests/Makefile.am (EXTRA_DIST): Distribute mktests.stamp.
(CLEANFILES): Don't clean the stamp, since we distribute the
generated files pre-built.
(MAINTAINERCLEANFILES): Clean it here instead.
Index: tests/Makefile.am
===================================================================
RCS file: /sources/autoconf/autoconf/tests/Makefile.am,v
retrieving revision 1.106
diff -u -p -r1.106 Makefile.am
--- tests/Makefile.am 13 Sep 2007 19:59:18 -0000 1.106
+++ tests/Makefile.am 13 Sep 2007 20:37:11 -0000
@@ -172,7 +172,10 @@ mktests.stamp : mktests.sh $(AUTOCONF_FI
`echo " "$(AUTOCONF_FILES) | sed 's, [^ ]*/, ../lib/autoconf/,g'`
@mv -f mktests.tmp $@
-CLEANFILES += mktests.stamp mktests.tmp
+## Distribute the stamp file, since we distribute the generated files.
+EXTRA_DIST += mktests.stamp
+CLEANFILES += mktests.tmp
+MAINTAINERCLEANFILES += mktests.stamp
## maintainer-check ##