From: Norman Walsh Date: Fri, 17 May 2002 14:28:45 +0000 (+0000) Subject: Make the add-new rule actually, uhm, add new files. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=233b6c0c64bd620c5d717c914f09be9141244aae;p=docbook-dsssl Make the add-new rule actually, uhm, add new files. --- diff --git a/xsl/xhtml/Makefile b/xsl/xhtml/Makefile index 664e6f7b3..09b0a97f0 100644 --- a/xsl/xhtml/Makefile +++ b/xsl/xhtml/Makefile @@ -6,7 +6,7 @@ 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; fi; done + for f in ../html/*.xsl; do if [ ! -f `basename $$f` ]; then echo $$f; cp $$f .; fi; done # Oh, come on! It must be possible to do this in Make, but I can't figure out how (ndw)