]> granicus.if.org Git - docbook-dsssl/commitdiff
Make sure copied files get translated
authorNorman Walsh <ndw@nwalsh.com>
Tue, 11 Jun 2002 15:59:24 +0000 (15:59 +0000)
committerNorman Walsh <ndw@nwalsh.com>
Tue, 11 Jun 2002 15:59:24 +0000 (15:59 +0000)
xsl/xhtml/Makefile

index 00e4e2d8b0d6fbf8d86c03798116f24dd582586e..0f8025a7497f876852db335942863725d82773e7 100644 (file)
@@ -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)