From 8c011f24abb8c688f1980b84b83b729de2ce6927 Mon Sep 17 00:00:00 2001 From: Norman Walsh Date: Tue, 11 Jun 2002 15:59:24 +0000 Subject: [PATCH] Make sure copied files get translated --- xsl/xhtml/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xsl/xhtml/Makefile b/xsl/xhtml/Makefile index 00e4e2d8b..0f8025a74 100644 --- a/xsl/xhtml/Makefile +++ b/xsl/xhtml/Makefile @@ -6,7 +6,10 @@ remove-old: for f in *.xsl; do if [ ! -f ../html/$$f -a "$$f" != "html2xhtml.xsl" ]; then rm $$f; fi; done add-new: - for f in ../html/*.xsl; do if [ ! -f `basename $$f` ]; then echo $$f; cp $$f .; fi; done + for f in ../html/*.xsl; do if [ ! -f `basename $$f` ]; then \ + echo $$f; \ + cp $$f .; \ + touch -t 197001010000 `basename $$f`; fi; done # Oh, come on! It must be possible to do this in Make, but I can't figure out how (ndw) -- 2.40.0