diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-10-05 18:51:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-05 18:54:46 +0200 |
commit | be67dc7e3a916855f106536c5c0e4ccea1d8a48a (patch) | |
tree | d7f0e12b4489382acc19fcc704dddae391cfd72d | |
parent | 30fd40e42305069eb52eb4b47acf869d91c21ee5 (diff) |
Add back xsltproc --path arguments
...that 1f82c0a46529ee056e99fd7031b5d569de522359 "gbuild: kill
gb_XcsTarget_get_outdir_target" had disposed of, to avoid "failed to load
external entity" warnings when .xcs/.xcu files reference DTDs in
officecfg/registry/.
Change-Id: I99b99a798782be6ad779b3f9d1951a37b1477926
-rw-r--r-- | solenv/gbuild/Configuration.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/solenv/gbuild/Configuration.mk b/solenv/gbuild/Configuration.mk index 49864a51096e..ae671b7ac3a8 100644 --- a/solenv/gbuild/Configuration.mk +++ b/solenv/gbuild/Configuration.mk @@ -113,12 +113,14 @@ $(call gb_Helper_abbreviate_dirs,\ --noout \ --stringparam xcs $(call gb_XcsTarget_for_XcuTarget,$(XCUFILE)) \ $(gb_Configuration__stringparam_schemaRoot) \ + --path $(SRCDIR)/officecfg/registry \ $(gb_XcuDataTarget_XSLT_DataVal) \ $(3) && \ $(gb_Configuration_XSLTCOMMAND) --nonet \ -o $(1) \ --stringparam xcs $(call gb_XcsTarget_for_XcuTarget,$(XCUFILE)) \ $(gb_Configuration__stringparam_schemaRoot) \ + --path $(SRCDIR)/officecfg/registry \ $(gb_XcuTarget_XSLT_AllLang) \ $(3)) endef @@ -249,6 +251,7 @@ $(call gb_Helper_abbreviate_dirs,\ --stringparam xcs $(call gb_XcsTarget_for_XcuTarget,$(XCUFILE)) \ $(gb_Configuration__stringparam_schemaRoot) \ --stringparam locale $(word 2,$(subst /, ,$(2))) \ + --path $(SRCDIR)/officecfg/registry \ $(gb_XcuTarget_XSLT_AllLang) \ $(3)) endef |