diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-14 11:11:33 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-14 11:11:33 +0000 |
commit | 4e19a8db7ea97916ef541f4637e236ba1cb485c4 (patch) | |
tree | e2ac7018499ec141c0f33130e21e8eed17145677 /meta | |
parent | ded27188e2f0d90422f1401c430f3d5cd0bc30ce (diff) | |
download | poky-4e19a8db7ea97916ef541f4637e236ba1cb485c4.tar.gz |
gstreamer: use autotools_stage_all so libtool files will be mangled properly
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3159 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/packages/gstreamer/gstreamer_0.10.14.bb | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/meta/packages/gstreamer/gstreamer_0.10.14.bb b/meta/packages/gstreamer/gstreamer_0.10.14.bb index c6134d7fa7..7a37770f7f 100644 --- a/meta/packages/gstreamer/gstreamer_0.10.14.bb +++ b/meta/packages/gstreamer/gstreamer_0.10.14.bb | |||
@@ -5,6 +5,7 @@ PRIORITY = "optional" | |||
5 | LICENSE = "LGPL" | 5 | LICENSE = "LGPL" |
6 | HOMEPAGE = "http://www.gstreamer.net/" | 6 | HOMEPAGE = "http://www.gstreamer.net/" |
7 | DEPENDS = "glib-2.0 gettext-native libxml2 bison-native flex-native" | 7 | DEPENDS = "glib-2.0 gettext-native libxml2 bison-native flex-native" |
8 | PR = "r1" | ||
8 | 9 | ||
9 | inherit autotools pkgconfig | 10 | inherit autotools pkgconfig |
10 | 11 | ||
@@ -20,14 +21,8 @@ EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check= | |||
20 | #} | 21 | #} |
21 | 22 | ||
22 | do_stage() { | 23 | do_stage() { |
23 | oe_runmake install prefix=${STAGING_DIR_HOST}${layout_prefix} \ | 24 | autotools_stage_all |
24 | bindir=${STAGING_BINDIR} \ | ||
25 | includedir=${STAGING_INCDIR} \ | ||
26 | libdir=${STAGING_LIBDIR} \ | ||
27 | datadir=${STAGING_DATADIR} \ | ||
28 | mandir=${STAGING_DIR_HOST}${layout_mandir} | ||
29 | } | 25 | } |
30 | 26 | ||
31 | FILES_${PN} += " ${libdir}/gstreamer-0.10/*.so" | 27 | FILES_${PN} += " ${libdir}/gstreamer-0.10/*.so" |
32 | FILES_${PN}-dev += " ${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a" | 28 | FILES_${PN}-dev += " ${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a" |
33 | |||