diff options
author | Paul W. Frields <stickster@gmail.com> | 2007-03-24 20:17:25 +0000 |
---|---|---|
committer | Paul W. Frields <stickster@gmail.com> | 2007-03-24 20:17:25 +0000 |
commit | 9e967ecfa6d7d90f5a2bec6f0bcdddfe87724945 (patch) | |
tree | b69546ca83ba9d9a4995b5b6c8b2482b6b6dc176 /Makefile.common | |
parent | 07772491f765623b112bd2ef21599fb8017908e8 (diff) | |
download | fedora-doc-utils-9e967ecfa6d7d90f5a2bec6f0bcdddfe87724945.tar.gz fedora-doc-utils-9e967ecfa6d7d90f5a2bec6f0bcdddfe87724945.tar.xz fedora-doc-utils-9e967ecfa6d7d90f5a2bec6f0bcdddfe87724945.zip |
Make sure that the entities.dtd is used regardless of whether the
actual path to the DTD in a document's per-doc entities file is really
correct. The upshot is, you can use whatever path works for you at
the time you're writing the doc-entities.xml file, and not be worried
about where docs-common appears. It is going to become increasingly
important to debug these kind of problems with the new individual
checkout capabilities.
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 0202861..18cbc3f 100644 --- a/Makefile.common +++ b/Makefile.common @@ -154,7 +154,7 @@ FDP_ENTITIES=fdp-entities.ent ${XML2PO} ${XML2POFLAGS} $< >$@ %.ent: %.xml - ${XSLTPROC} -o $@.tmp \ + ${XSLTPROC} --path "${FDPCOMMONDIR}/common/entities" -o $@.tmp \ --stringparam FDPCOMMONDIR "${FDPCOMMONDIR}/common" \ ${FDPCOMMONDIR}/common/entities/entities.xsl $< && \ move-if-change $@.tmp $@ |