summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2006-06-26 23:39:33 +0000
committerPaul W. Frields <stickster@gmail.com>2006-06-26 23:39:33 +0000
commit022403d8699f5353f87cbfd8e71ce4464f4cb5bd (patch)
treeb21eb38ac9349956070c2e675b0bea22c652fe76
parent0d94cdd45b7959df6ade1e09968f31d2004b0013 (diff)
downloadfedora-doc-utils-022403d8699f5353f87cbfd8e71ce4464f4cb5bd.tar.gz
fedora-doc-utils-022403d8699f5353f87cbfd8e71ce4464f4cb5bd.tar.xz
fedora-doc-utils-022403d8699f5353f87cbfd8e71ce4464f4cb5bd.zip
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.)
-rw-r--r--Makefile.common2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index ea038bb..a673da2 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -887,7 +887,7 @@ set-locale-${1}:: ${1}/${FDP_ENTITIES} ${DOC_ENTITIES_ENT-${PRI_LANG}}
clean::
${RM} ${1}/${FDP_ENTITIES}
ifneq "${DOC_ENTITIES_ENT-${1}}" ""
- ${RM} ${1}/${DOC_ENTITIES_ENT-${1}}
+ ${RM} ${DOC_ENTITIES_ENT-${1}}
endif
help::