From: Ross Burton Date: Thu, 25 Feb 2016 00:26:51 +0000 (+0000) Subject: gtk-doc-stub: don't inherit autotools X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~26797 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f1fb426ca74168c71bc5366cf880eb2fe7d5378;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git gtk-doc-stub: don't inherit autotools There's quite an overhead in inheriting autotools, but this package just has a hand-crafted configure script and Makefile. Signed-off-by: Ross Burton --- diff --git a/meta/recipes-gnome/gtk-doc-stub/gtk-doc-stub_git.bb b/meta/recipes-gnome/gtk-doc-stub/gtk-doc-stub_git.bb index 40f324352f1..41f4aee22d7 100644 --- a/meta/recipes-gnome/gtk-doc-stub/gtk-doc-stub_git.bb +++ b/meta/recipes-gnome/gtk-doc-stub/gtk-doc-stub_git.bb @@ -13,7 +13,18 @@ SRC_URI = "git://git.gnome.org/${BPN}" S = "${WORKDIR}/git" -inherit autotools +do_configure() { + ./configure --prefix=${prefix} \ + --sysconfdir=${sysconfdir} \ + --bindir=${bindir} \ + --libdir=${libdir} \ + --datadir=${datadir} \ + --datarootdir=${datadir} +} + +do_install() { + oe_runmake install DESTDIR="${D}" +} FILES_${PN} += "${datadir}"