diff options
author | Paul Smith <psmith@gnu.org> | 2005-10-26 16:06:30 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2005-10-26 16:06:30 +0000 |
commit | 82103b1a49394a7063f8cddfc89f759ddf847de9 (patch) | |
tree | 09c74c9e3caf9d6ed43e60053fb878010258d137 /tests | |
parent | 11095a90f120545c915c92b8ebf48f04723d1837 (diff) | |
download | gunmake-82103b1a49394a7063f8cddfc89f759ddf847de9.tar.gz |
Fix a crash I introduced last-minute.
Try to avoid extraneous rebuilds of template files.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/scripts/misc/general4 | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/scripts/misc/general4 b/tests/scripts/misc/general4 index 0b5c94a..bce4a30 100644 --- a/tests/scripts/misc/general4 +++ b/tests/scripts/misc/general4 @@ -48,10 +48,9 @@ run_make_test(q! %.foo : baz$$bar ; @echo 'done $<' %.foo : bar$$baz ; @echo 'done $<' test.foo: -fox: baz -.DEFAULT baz$$bar bar$$baz: ; @echo '$@' +baz$$bar bar$$baz: ; @echo '$@' !, '', - 'done bar'); + "baz\$bar\ndone baz\$bar"); 1; |