]> git.ipfire.org Git - thirdparty/make.git/commitdiff
Add prerequisites to ensure ordering of results.
authorPaul Smith <psmith@gnu.org>
Sat, 10 Dec 2011 17:13:14 +0000 (17:13 +0000)
committerPaul Smith <psmith@gnu.org>
Sat, 10 Dec 2011 17:13:14 +0000 (17:13 +0000)
tests/ChangeLog
tests/scripts/targets/SECONDARY

index e2ada2018f08eefb9a11a2f8b47bb5ba019e1cf4..9ad40b7d833347476f8d8750faad72bb56b7464e 100644 (file)
@@ -1,3 +1,8 @@
+2011-12-10  Paul Smith  <psmith@gnu.org>
+
+       * scripts/targets/SECONDARY: Add prereq statements to ensure rules
+       are printed in the right order for test #9
+
 2011-11-14  Paul Smith  <psmith@gnu.org>
 
        * scripts/features/double_colon: Check double-colon with escaped
index c954ee9a30bac671cbdb0e246569c375626c8131..26515d8ab03802e4ec314d399e32c010197c67a1 100644 (file)
@@ -129,10 +129,11 @@ touch(qw(1.a 2.a));
 run_make_test('
 %.c : %.b ; cp $< $@
 %.b : %.a ; cp $< $@
-all : 1.c 2.c', '-rR -j',
+all : 1.c 2.c
+2.a: 1.c', '-rR -j',
 'cp 1.a 1.b
-cp 2.a 2.b
 cp 1.b 1.c
+cp 2.a 2.b
 cp 2.b 2.c
 rm 1.b 2.b');