rquadling Mon Feb 19 15:21:13 2007 UTC
Modified files: /phpdoc Makefile.in Log: images_htmlhelp should be moved to htmlhelp/html/figures and not htmlhelp/figures http://cvs.php.net/viewvc.cgi/phpdoc/Makefile.in?r1=1.189&r2=1.190&diff_format=u Index: phpdoc/Makefile.in diff -u phpdoc/Makefile.in:1.189 phpdoc/Makefile.in:1.190 --- phpdoc/Makefile.in:1.189 Wed Feb 14 20:52:22 2007 +++ phpdoc/Makefile.in Mon Feb 19 15:21:13 2007 @@ -16,7 +16,7 @@ # # -# $Id: Makefile.in,v 1.189 2007/02/14 20:52:22 bjori Exp $ +# $Id: Makefile.in,v 1.190 2007/02/19 15:21:13 rquadling Exp $ # all: html @@ -109,7 +109,9 @@ images_htmlhelp: rm -rf ./htmlhelp/html && mkdir ./htmlhelp/html && mkdir htmlhelp/html/figures - 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 htmlhelp/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 htmlhelp/html/figures/$$sect.$$name; fi; +done; done; html: html/index.html bightml: @[EMAIL PROTECTED]