diff options
-rw-r--r-- | meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb index 2a894796ae..5e1384d588 100644 --- a/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb +++ b/meta/recipes-devtools/docbook-utils/docbook-utils-native_0.6.14.bb @@ -21,16 +21,17 @@ inherit autotools native do_configure_prepend() { # Fix hard-coded references to /etc/sgml - if [ ! -e ${WORKDIR}/.sed_done ]; then + if [ ! -e ${S}/.sed_done ]; then sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" bin/jw.in sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" doc/man/Makefile.am sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" doc/HTML/Makefile.am # Point jw to the native sysroot catalog sed -i -e 's|^SGML_EXTRA_CATALOGS=""|SGML_EXTRA_CATALOGS=":${sysconfdir}/sgml/catalog"|g' bin/jw.in - touch ${WORKDIR}/.sed_done + touch ${S}/.sed_done fi } +do_unpack[cleandirs] += "${S}" do_install() { install -d ${D}${bindir} |