summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross@openedhand.com>2007-05-04 15:46:07 +0000
committerRoss Burton <ross@openedhand.com>2007-05-04 15:46:07 +0000
commit1f3573dd3aaa4ae5444277d5e06f161582f09648 (patch)
tree5e841bf5feca062e17cd5055dffe998ccfa5db9f /meta/classes/autotools.bbclass
parentd60ec072fe4433faea1d644f2ea0f13d6bfba3fe (diff)
downloadpoky-1f3573dd3aaa4ae5444277d5e06f161582f09648.tar.gz
Handle GTK_DOC_CHECK and GNOME_DOC_INIT in configure.ac
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1603 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 33546e0eb6..05f9deaee4 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -119,6 +119,14 @@ autotools_do_configure() {
119 oenote Executing intltoolize --copy --force --automake 119 oenote Executing intltoolize --copy --force --automake
120 intltoolize --copy --force --automake 120 intltoolize --copy --force --automake
121 fi 121 fi
122 if grep "^GTK_DOC_CHECK" $CONFIGURE_AC >/dev/null; then
123 oenote Executing gtkdocize --copy
124 gtkdocize --copy
125 fi
126 if grep "^GNOME_DOC_INIT" $CONFIGURE_AC >/dev/null; then
127 oenote Executing gnome-doc-prepare --copy --force
128 gnome-doc-prepare --copy --force
129 fi
122 oenote Executing autoreconf --verbose --install --force ${EXTRA_AUTORECONF} $acpaths 130 oenote Executing autoreconf --verbose --install --force ${EXTRA_AUTORECONF} $acpaths
123 mkdir -p m4 131 mkdir -p m4
124 autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths || oefatal "autoreconf execution failed." 132 autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths || oefatal "autoreconf execution failed."