summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-02-25 00:26:51 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-28 11:33:02 +0000
commita74c3890d8769eaebc90726c8d8370c76e670bdb (patch)
tree0fabd0eb0702ebcf60d0135125d4c436e0b28e01 /meta/recipes-gnome
parent2269f90b9f01564b99c282c6c927e15d593ad3e7 (diff)
downloadpoky-a74c3890d8769eaebc90726c8d8370c76e670bdb.tar.gz
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. (From OE-Core rev: 1f1fb426ca74168c71bc5366cf880eb2fe7d5378) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome')
-rw-r--r--meta/recipes-gnome/gtk-doc-stub/gtk-doc-stub_git.bb13
1 files changed, 12 insertions, 1 deletions
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 40f324352f..41f4aee22d 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}"
13 13
14S = "${WORKDIR}/git" 14S = "${WORKDIR}/git"
15 15
16inherit autotools 16do_configure() {
17 ./configure --prefix=${prefix} \
18 --sysconfdir=${sysconfdir} \
19 --bindir=${bindir} \
20 --libdir=${libdir} \
21 --datadir=${datadir} \
22 --datarootdir=${datadir}
23}
24
25do_install() {
26 oe_runmake install DESTDIR="${D}"
27}
17 28
18FILES_${PN} += "${datadir}" 29FILES_${PN} += "${datadir}"
19 30