]> granicus.if.org Git - docbook-dsssl/commitdiff
Make the add-new rule actually, uhm, add new files.
authorNorman Walsh <ndw@nwalsh.com>
Fri, 17 May 2002 14:28:45 +0000 (14:28 +0000)
committerNorman Walsh <ndw@nwalsh.com>
Fri, 17 May 2002 14:28:45 +0000 (14:28 +0000)
xsl/xhtml/Makefile

index 664e6f7b3b6519862c3390091ec4a0b0da8ee6a1..09b0a97f045918a8d6c0740eac459404329ac6ea 100644 (file)
@@ -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)