diff options
author | Holger Hans Peter Freyther <zecke@openmoko.org> | 2008-07-22 19:58:47 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2008-10-29 13:26:02 +0100 |
commit | 228cd7cabe301dbfac242033d58f9c53abad785e (patch) | |
tree | 7e3180a52900890597abfbfc43d78a9c0d4071c2 /packages | |
parent | fe0abfdfc41ca320df646cccb9ca8f68ddfe712e (diff) |
packagekit: Disable generation of the docbook
Say xmlto is missing to disable generation of the docbook information. On
some hosts xmlto and other utilities are installed on some are not, xmlto
and xmllint can require network access during the build which is not
guranteed in some setups. I think it is fine to not generate the documentation
Diffstat (limited to 'packages')
-rw-r--r-- | packages/packagekit/packagekit_git.bb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/packagekit/packagekit_git.bb b/packages/packagekit/packagekit_git.bb index 5b672c522e..f78cc26e9a 100644 --- a/packages/packagekit/packagekit_git.bb +++ b/packages/packagekit/packagekit_git.bb @@ -5,7 +5,7 @@ LICENSE = "GPL" DEPENDS = "dbus (>= 1.1.1) dbus-glib glib-2.0 sqlite3 opkg intltool intltool-native (>= 0.37.1)" RDEPENDS_${PN} = "opkg" PV = "0.2.3+gitr${SRCREV}" -PR = "r13" +PR = "r14" SRC_URI = "git://anongit.freedesktop.org/git/packagekit;protocol=git \ file://disable-docbook2man.patch;patch=1 \ @@ -18,7 +18,12 @@ S = "${WORKDIR}/git" inherit autotools pkgconfig -EXTRA_OECONF = "--with-security-framework=dummy --with-default-backend=opkg --enable-opkg" +EXTRA_OECONF = "--with-security-framework=dummy \ + --with-default-backend=opkg \ + --enable-opkg \ + ac_cv_path_XMLTO=no \ + " + do_configure_prepend() { echo "EXTRA_DIST=" > gtk-doc.make |