bjori           Fri Jan 19 20:14:13 2007 UTC

  Modified files:              
    /phpdoc     Makefile.in 
  Log:
  Apparently linux doesn't understand that you don't always want to overwrite 
existing files *sigh*
  
  
http://cvs.php.net/viewvc.cgi/phpdoc/Makefile.in?r1=1.175&r2=1.176&diff_format=u
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.175 phpdoc/Makefile.in:1.176
--- phpdoc/Makefile.in:1.175    Fri Jan 19 19:46:22 2007
+++ phpdoc/Makefile.in  Fri Jan 19 20:14:12 2007
@@ -16,7 +16,7 @@
 #
 
 #
-# $Id: Makefile.in,v 1.175 2007/01/19 19:46:22 bjori Exp $
+# $Id: Makefile.in,v 1.176 2007/01/19 20:14:12 bjori Exp $
 #
 
 all: html
@@ -192,7 +192,7 @@
 @[EMAIL PROTECTED]: @[EMAIL PROTECTED] $(BIGHTML_DEPS)
 
 html/index.html: manual.xml $(HTML_DEPS)
-       for i in `find en -type d -name figures`; do sect=`echo $$i | awk -F\/ 
'{print $$3}'`; for file in $$i/*; do if test -f $$file; then name=`basename 
$$file`; cp -n $$file html/figures/$$sect.$$name; fi; done; done;
+       for i in `find en -type d -name figures`; do sect=`echo $$i | awk -F\/ 
'{print $$3}'`; for file in $$i/*; do if test -f $$file; then name=`basename 
$$file`; cp $$file html/figures/$$sect.$$name; fi; done; done;
        $(PHP) -q $(scriptdir)/rtlpatch/hackmanuallang.php $(LANGDIR)
        $(JADE) $(CATALOG) -d $(HTML_STYLESHEET) -V use-output-dir -t sgml 
$(XMLDCL) manual.xml
        $(PHP) -q $(scriptdir)/html_syntax.php html html/
@@ -224,7 +224,7 @@
        $(PHP) -q $(scriptdir)/fixphpweb.php `pwd`/php
 
 php/index.php: manual.xml $(PHPWEB_DEPS)
-       for i in `find en -type d -name figures`; do sect=`echo $$i | awk -F\/ 
'{print $$3}'`; for file in $$i/*; do if test -f $$file; then name=`basename 
$$file`; cp -n $$file php/figures/$$sect.$$name; fi; done; done;
+       for i in `find en -type d -name figures`; do sect=`echo $$i | awk -F\/ 
'{print $$3}'`; for file in $$i/*; do if test -f $$file; then name=`basename 
$$file`; cp $$file php/figures/$$sect.$$name; fi; done; done;
        $(PHP) -q $(scriptdir)/phpweb-entities.php `pwd` phpweb
        $(PHP) -q $(scriptdir)/rtlpatch/hackmanuallang.php $(LANGDIR)
        -$(JADE) $(CATALOG) -d $(PHPWEB_STYLESHEET) -V use-output-dir -t sgml 
$(XMLDCL) manual.xml

Reply via email to