From 8192139a2b4fd4182622d23e196eac735215aa39 Mon Sep 17 00:00:00 2001 From: sam Date: Sun, 28 Sep 2003 10:12:49 +0000 Subject: [PATCH] * Use printf "" instead of touch to create timestamps because of systems where touch does not create the file. git-svn-id: svn://svn.zoy.org/elk/trunk@217 55e467fa-43c5-0310-a8a2-de718669efc6 --- examples/tests/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/tests/Makefile.am b/examples/tests/Makefile.am index 7fa004a..df1faf9 100644 --- a/examples/tests/Makefile.am +++ b/examples/tests/Makefile.am @@ -7,8 +7,9 @@ if NATIVE_BUILD all-local: $(allstamps) endif -stamp-r4rs: +stamp-r4rs: $(top_builddir)/src/elk + rm -f $@ -$(top_builddir)/src/elk -p .:$(top_srcdir)/scm -l r4rstest.scm rm -f tmp1 tmp2 tmp3 - touch $@ + printf "" > $@