docs-common Makefile.common,1.116,1.117

Paul W. Frields (pfrields) fedora-docs-commits at redhat.com
Mon Jun 26 23:39:35 UTC 2006


Author: pfrields

Update of /cvs/docs/docs-common
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv7800

Modified Files:
	Makefile.common 
Log Message:
Aha!  Finally found the errant parameter.  The doc-entities.ent files
weren't being removed, since the command was evaluating as 'rm -f
${LANG}/${LANG}/${DOC_ENTITIES}.xml'.  (Extra directory in the path.)



Index: Makefile.common
===================================================================
RCS file: /cvs/docs/docs-common/Makefile.common,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- Makefile.common	26 Jun 2006 23:33:35 -0000	1.116
+++ Makefile.common	26 Jun 2006 23:39:33 -0000	1.117
@@ -887,7 +887,7 @@
 clean::
 	${RM} ${1}/${FDP_ENTITIES}
 ifneq	"${DOC_ENTITIES_ENT-${1}}" ""
-	${RM} ${1}/${DOC_ENTITIES_ENT-${1}}
+	${RM} ${DOC_ENTITIES_ENT-${1}}
 endif
 
 help::




More information about the Fedora-docs-commits mailing list