From bc91c0b23f27cc80dda01c7494906523754dc650 Mon Sep 17 00:00:00 2001
From: Paul Smith <psmith@gnu.org>
Date: Tue, 10 Sep 2002 22:23:20 +0000
Subject: A few test bug fixes:   * Never use "touch" in make rules; it breaks
 on most sub-second     supporting systems.  Use echo "" > $@ instead.   *
 Forgot to close test makefiles before using them!

All the above worked fine on Linux but failed miserably on Solaris.
---
 tests/scripts/variables/automatic | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'tests/scripts/variables')

diff --git a/tests/scripts/variables/automatic b/tests/scripts/variables/automatic
index cb17efe..42e8cba 100644
--- a/tests/scripts/variables/automatic
+++ b/tests/scripts/variables/automatic
@@ -62,6 +62,8 @@ $(dir)/foo $(dir)/bar: $@.x $$@.x $$$@.x $$$$@.x $$(@D).x $$(@F).x
 $(dir)/x.z $(dir)/y.z: $(dir)/%.z : $@.% $$@.% $$$@.% $$$$@.% $$(@D).% $$(@F).%
 EOF
 
+close(MAKEFILE);
+
 &run_make_with_options($makefile2, "$dir/foo $dir/bar", &get_logfile);
 $answer = ".x\n$dir/foo.x\n\$.x\n\$@.x\n$dir.x\nfoo.x\n$dir/bar.x\nbar.x\n";
 &compare_output($answer, &get_logfile(1));
-- 
cgit v1.2.3