diff options
author | Florian Boor <florian.boor@kernelconcepts.de> | 2007-02-21 17:59:52 +0000 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2007-02-21 17:59:52 +0000 |
commit | 3221b4f9308ad3a53b7785e07194fafda8bc24dd (patch) | |
tree | 913342a6a4d928183c0f65d9b92d787cc0e630ae /packages/gpephone/soundserver_1.0.bb | |
parent | a7993804a3fadfda834e2fc23314648d0211eb8a (diff) |
soundserver: Work around libtool breakage.
Diffstat (limited to 'packages/gpephone/soundserver_1.0.bb')
-rw-r--r-- | packages/gpephone/soundserver_1.0.bb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/packages/gpephone/soundserver_1.0.bb b/packages/gpephone/soundserver_1.0.bb index 5d47d9a370..17e3c6b6b1 100644 --- a/packages/gpephone/soundserver_1.0.bb +++ b/packages/gpephone/soundserver_1.0.bb @@ -2,16 +2,25 @@ LICENSE = "LiPS" DESCRIPTION = "Cellphone alarm daemon" SECTION = "gpe" PRIORITY = "optional" -PR = "r0" +PR = "r1" DEPENDS = "glib-2.0 libiac gstreamer" GPE_TARBALL_SUFFIX = "bz2" inherit gpephone autotools +SRC_URI += " file://libtool.patch;patch=1" + EXTRA_OECONF="--disable-osc8k" +LDFLAGS += " -L${STAGING_LIBDIR}" + do_configure () { export PKG_CONFIG=${STAGING_BINDIR_NATIVE}/pkg-config oe_runconf } + +do_configure_prepend () { + export PKG_CONFIG=${STAGING_BINDIR_NATIVE}/pkg-config + autoreconf +} |