Author: jtr
Update of /cvs/docs/docs-common In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv569/docs-common
Modified Files: Makefile.common Log Message: Do not break the make during an HTML build if the document directory is without a "figs/" subdirectory. Originally used the wrong test, sorry.
Index: Makefile.common =================================================================== RCS file: /cvs/docs/docs-common/Makefile.common,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- Makefile.common 30 Oct 2005 02:36:54 -0000 1.11 +++ Makefile.common 30 Oct 2005 19:15:40 -0000 1.12 @@ -77,7 +77,7 @@ mkdir -p $(DOCBASE)-$(1)/stylesheet-images/ cp ${FDPDIR}/docs-common/stylesheet-images/*.png $(DOCBASE)-$(1)/stylesheet-images cp ${FDPDIR}/docs-common/css/fedora.css $$(DOCBASE)-$(1)/ - [ -d figs ] && ( \ + [ ! -d figs ] || ( \ mkdir -p ${DOCBASE}-$(1)/figs; \ find figs -type f -iname '*.*' -print | \ egrep -vi '*.eps' | \
docs-commits@lists.fedoraproject.org