diff options
author | Rene Wagner <rw@handhelds.org> | 2006-01-05 19:47:30 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-05 19:47:30 +0000 |
commit | faa940833f7112f6ace5e122d59ddff2529fc0c2 (patch) | |
tree | d6fb5a09c9b30bff7dd2799cbb7db86ec3fe1d4b | |
parent | 5bb30f1aad54a468210a0db96b3b2b3971320b07 (diff) |
bluez-libs: revert deletion of do_stage() applied in 2f06f49d807367c54e4ea7e65e8a801c28ac178f
-rw-r--r-- | packages/bluez/bluez-libs_2.21.bb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/bluez/bluez-libs_2.21.bb b/packages/bluez/bluez-libs_2.21.bb index e5ef923d03..997c2ae7d1 100644 --- a/packages/bluez/bluez-libs_2.21.bb +++ b/packages/bluez/bluez-libs_2.21.bb @@ -3,7 +3,7 @@ SECTION = "libs" PRIORITY = "optional" HOMEPAGE = "http://www.bluez.org" LICENSE = "GPL" -PR = "r1" +PR = "r2" SRC_URI = "http://bluez.sourceforge.net/download/bluez-libs-${PV}.tar.gz" @@ -12,5 +12,11 @@ inherit autotools pkgconfig HEADERS = "bluetooth.h bnep.h cmtp.h hci.h hci_lib.h hidp.h l2cap.h rfcomm.h sco.h sdp.h sdp_lib.h" do_stage() { - autotools_stage_all + oe_libinstall -a -so -C src libbluetooth ${STAGING_LIBDIR} + + install -d ${STAGING_INCDIR}/bluetooth/ + for f in ${HEADERS} + do + install -m 0644 include/$f ${STAGING_INCDIR}/bluetooth/$f + done } |