From bc91c0b23f27cc80dda01c7494906523754dc650 Mon Sep 17 00:00:00 2001 From: Paul Smith 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/options/dash-B | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/scripts/options/dash-B') diff --git a/tests/scripts/options/dash-B b/tests/scripts/options/dash-B index 94932e5..32992b3 100644 --- a/tests/scripts/options/dash-B +++ b/tests/scripts/options/dash-B @@ -18,7 +18,7 @@ all: foo foo: bar.x @echo cp $< $@ - @touch $@ + @echo "" > $@ EOF close(MAKEFILE); -- cgit v1.2.3