diff options
author | Boris Kolpackov <boris@kolpackov.net> | 2005-03-03 17:39:48 +0000 |
---|---|---|
committer | Boris Kolpackov <boris@kolpackov.net> | 2005-03-03 17:39:48 +0000 |
commit | cb2f20026908d5c6e48e2cd3e3e65b5f67498d02 (patch) | |
tree | 82f2bd2fa0de34d8cbd8abf62a7827b0879dd5b6 /tests/scripts/features/statipattrules | |
parent | 0759af440a1d721f0248b2ea83fe0ad8a1c19cfb (diff) | |
download | gunmake-cb2f20026908d5c6e48e2cd3e3e65b5f67498d02.tar.gz |
Fixed stem termination and stem triple-expansion bugs.
Diffstat (limited to 'tests/scripts/features/statipattrules')
-rw-r--r-- | tests/scripts/features/statipattrules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/scripts/features/statipattrules b/tests/scripts/features/statipattrules index 7d35ec3..b5459b9 100644 --- a/tests/scripts/features/statipattrules +++ b/tests/scripts/features/statipattrules @@ -55,11 +55,11 @@ unlink('foo.el', 'bar.c', 'lose.c'); $makefile2 = &get_tmpfile; open(MAKEFILE, "> $makefile2"); -print MAKEFILE "foo: foo%: % ; \@echo $@\n"; +print MAKEFILE "foo: foo%: % ; \@echo \$@\n"; close(MAKEFILE); -&run_make_with_options($makefile2, '', &get_logfile, 512); -$answer = "$makefile2:1: *** target `foo' leaves prerequisite pattern empty. Stop.\n"; +&run_make_with_options($makefile2, '', &get_logfile); +$answer = "foo\n"; &compare_output($answer, &get_logfile(1)); # TEST #5 -- bug #12180: core dump on a stat pattern rule with an empty |