From: Norman Walsh Date: Tue, 11 Jun 2002 15:59:24 +0000 (+0000) Subject: Make sure copied files get translated X-Git-Tag: release/1.79.1~6^2~5568 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c011f24abb8c688f1980b84b83b729de2ce6927;p=docbook-dsssl Make sure copied files get translated --- 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)