diff options
author | Junqian Gordon Xu <xjqian@gmail.com> | 2008-01-30 11:50:03 +0000 |
---|---|---|
committer | Junqian Gordon Xu <xjqian@gmail.com> | 2008-01-30 11:50:03 +0000 |
commit | 6014e161475141f4197807a0c43b409d9694db37 (patch) | |
tree | c8d8edecdce60a0d89c8013679f5ba18c81f090c /packages/speex/speex_1.1.12.bb | |
parent | c5dd5bfdffff19a8bbef1248789f102c7cab0493 (diff) |
speex: fix packaging *.h headers
* remove hardcoded -I/usr/indlude is fine but remove all of the "includedir"
strings in the Makefiles is an overreaction and causes problem during installation
Diffstat (limited to 'packages/speex/speex_1.1.12.bb')
-rw-r--r-- | packages/speex/speex_1.1.12.bb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/speex/speex_1.1.12.bb b/packages/speex/speex_1.1.12.bb index b18151e48d..7417ce4504 100644 --- a/packages/speex/speex_1.1.12.bb +++ b/packages/speex/speex_1.1.12.bb @@ -3,7 +3,7 @@ SECTION = "libs" LICENSE = "BSD" HOMEPAGE = "http://www.speex.org" DEPENDS = "libogg" -PR = "r1" +PR = "r2" SRC_URI = "http://downloads.us.xiph.org/releases/speex/speex-${PV}.tar.gz" @@ -25,8 +25,6 @@ EXTRA_OECONF_append_arm = " --enable-fixed-point " do_configure_append() { sed -i s/"^OGG_CFLAGS.*$"/"OGG_CFLAGS = "/g Makefile */Makefile */*/Makefile sed -i s/"^OGG_LIBS.*$"/"OGG_LIBS = -logg"/g Makefile */Makefile */*/Makefile - perl -pi -e 's:^includedir.*$:includedir = ${STAGING_INCDIR}:g' Makefile */Makefile */*/Makefile - perl -pi -e 's:^oldincludedir.*$:includedir = ${STAGING_INCDIR}:g' Makefile */Makefile */*/Makefile perl -pi -e 's:\s*-I/usr/include$::g' Makefile */Makefile */*/Makefile } |