diff options
| author | Scott Garman <scott.a.garman@intel.com> | 2011-02-02 16:10:33 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-03 10:04:35 +0000 |
| commit | 3eef8470547beed186c38a7da44cb8e22e1497e8 (patch) | |
| tree | ece8d254f148aa33a11b9d34ec659661d74edd51 | |
| parent | efbaabd06cafb312657e7c4b420f5dbf2324d5db (diff) | |
| download | poky-3eef8470547beed186c38a7da44cb8e22e1497e8.tar.gz | |
docbook-utils: fix build errors
Fix build errors found in my first iteration of the recipe.
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
| -rw-r--r-- | meta/recipes-devtools/docbook-utils/docbook-utils_0.6.14.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/docbook-utils/docbook-utils_0.6.14.bb b/meta/recipes-devtools/docbook-utils/docbook-utils_0.6.14.bb index 4b053b1a0f..feeb23128b 100644 --- a/meta/recipes-devtools/docbook-utils/docbook-utils_0.6.14.bb +++ b/meta/recipes-devtools/docbook-utils/docbook-utils_0.6.14.bb | |||
| @@ -17,4 +17,34 @@ SRC_URI[sha256sum] = "48faab8ee8a7605c9342fb7b906e0815e3cee84a489182af38e8f7c0df | |||
| 17 | 17 | ||
| 18 | inherit autotools | 18 | inherit autotools |
| 19 | 19 | ||
| 20 | do_configure_prepend_virtclass-native() { | ||
| 21 | # Fix hard-coded references to /etc/sgml | ||
| 22 | sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" bin/jw.in | ||
| 23 | sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" doc/man/Makefile.am | ||
| 24 | sed -i -e "s|/etc/sgml|${sysconfdir}/sgml|g" doc/HTML/Makefile.am | ||
| 25 | } | ||
| 26 | |||
| 27 | do_install_virtclass-native() { | ||
| 28 | install -d ${D}${bindir} | ||
| 29 | # Install the binaries and a bunch of other commonly used names for them. | ||
| 30 | for doctype in html ps dvi man pdf rtf tex texi txt | ||
| 31 | do | ||
| 32 | install -m 0755 ${S}/bin/docbook2$doctype ${D}${bindir}/ | ||
| 33 | ln -sf docbook2x-$doctype ${D}${bindir}/db2$doctype | ||
| 34 | ln -sf docbook2$doctype ${D}${bindir}/db2$doctype | ||
| 35 | ln -sf docbook2$doctype ${D}${bindir}/docbook-to-$doctype | ||
| 36 | done | ||
| 37 | |||
| 38 | install -m 0755 ${S}/bin/jw ${D}${bindir}/ | ||
| 39 | for i in backends/dvi backends/html backends/man \ | ||
| 40 | backends/pdf backends/ps backends/rtf backends/tex \ | ||
| 41 | backends/texi backends/txt frontends/docbook \ | ||
| 42 | helpers/docbook2man-spec.pl helpers/docbook2texi-spec.pl \ | ||
| 43 | docbook-utils.dsl | ||
| 44 | do | ||
| 45 | install -d ${D}${datadir}/sgml/docbook/utils-${PV}/`dirname $i` | ||
| 46 | install ${S}/$i ${D}${datadir}/sgml/docbook/utils-${PV}/$i | ||
| 47 | done | ||
| 48 | } | ||
| 49 | |||
| 20 | BBCLASSEXTEND = "native" | 50 | BBCLASSEXTEND = "native" |
