[oe-commits] [openembedded-core] 54/103: gtk-doc-stub: don't inherit autotools

git at git.openembedded.org git at git.openembedded.org
Sun Feb 28 11:35:54 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 1f1fb426ca74168c71bc5366cf880eb2fe7d5378
Author: Ross Burton <ross.burton at intel.com>
AuthorDate: Thu Feb 25 00:26:51 2016 +0000

    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 <ross.burton at intel.com>
---
 meta/recipes-gnome/gtk-doc-stub/gtk-doc-stub_git.bb | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

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 40f3243..41f4aee 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}"
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list