diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-12-24 12:55:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-12-24 12:55:55 +0000 |
commit | b4750eeed53b885fdcd0fb2fd63fa57d533457d6 (patch) | |
tree | 58c5f4965a02d7e9c0d5eb975af6c69a31446ec9 /sys-devel/automake/files | |
parent | Version bump from the php-overlay (diff) | |
download | historical-b4750eeed53b885fdcd0fb2fd63fa57d533457d6.tar.gz historical-b4750eeed53b885fdcd0fb2fd63fa57d533457d6.tar.bz2 historical-b4750eeed53b885fdcd0fb2fd63fa57d533457d6.zip |
Add fix from upstream for random aclocal7 test failure #197366 by Joe Millenbach.
Package-Manager: portage-2.1.4_rc11
Diffstat (limited to 'sys-devel/automake/files')
-rw-r--r-- | sys-devel/automake/files/automake-1.9.6-aclocal7-test-sleep.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sys-devel/automake/files/automake-1.9.6-aclocal7-test-sleep.patch b/sys-devel/automake/files/automake-1.9.6-aclocal7-test-sleep.patch new file mode 100644 index 000000000000..ea2b227b8d40 --- /dev/null +++ b/sys-devel/automake/files/automake-1.9.6-aclocal7-test-sleep.patch @@ -0,0 +1,39 @@ +http://bugs.gentoo.org/197366 + +commit 8952f7248c2637426bcf83d38f07a8b02124a06e +Author: Ralf Wildenhues <Ralf.Wildenhues@gmx.de> +Date: Wed May 10 20:50:53 2006 +0000 + + * tests/aclocal7.test: Add `$sleep's between file touching + and automake resp aclocal+automake invocations, to ensure + they complete with a time stamp strictly later than the touched + file. + +diff --git a/tests/aclocal7.test b/tests/aclocal7.test +index 787565c..f6d5e31 100755 +--- a/tests/aclocal7.test ++++ b/tests/aclocal7.test +@@ -89,6 +89,7 @@ test `ls -1t sub/Makefile.in foo | sed 1q` = sub/Makefile.in + touch fragment.inc + $sleep + touch foo ++$sleep + $ACLOCAL -I m4 + $AUTOMAKE --no-force + # Only ./Makefile.in should change. +@@ -101,6 +102,7 @@ grep README Makefile.in && exit 1 + : > README + $sleep + touch foo ++$sleep + $AUTOMAKE --no-force + # Even if no dependency change, the content changed. + test `ls -1t Makefile.in foo | sed 1q` = Makefile.in +@@ -111,6 +113,7 @@ grep README Makefile.in + : > sub/Makefile.in + $sleep + touch foo ++$sleep + $ACLOCAL -I m4 + $AUTOMAKE --no-force + # Only sub/Makefile.in should change. |