diff options
author | Holger Schurig <schurig@mn-solutions.de> | 2004-05-24 10:51:00 +0000 |
---|---|---|
committer | Holger Schurig <schurig@mn-solutions.de> | 2004-05-24 10:51:00 +0000 |
commit | 414d9cd057a8122700c79722abcf82f0d1345515 (patch) | |
tree | 98ba1369998a6a85568bb08e1cedea86b50cfeb8 /libusb | |
parent | de369b732ea30165ba861691f897183f60708457 (diff) |
correctly install libusb-config
BKrev: 40b1d394pvQzVBDOQe3DelwRvXuz-g
Diffstat (limited to 'libusb')
-rw-r--r-- | libusb/libusb_0.1.7.oe | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libusb/libusb_0.1.7.oe b/libusb/libusb_0.1.7.oe index 8fe16b2669..460bb07102 100644 --- a/libusb/libusb_0.1.7.oe +++ b/libusb/libusb_0.1.7.oe @@ -5,15 +5,18 @@ access to USB devices." SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.gz \ file://configure.patch;patch=1" -inherit autotools +inherit autotools do_stage() { oe_libinstall -a -so libusb ${STAGING_LIBDIR} + install -d ${STAGING_BINDIR} + install -m 755 ${S}/libusb-config ${STAGING_BINDIR} + perl -pi -e 's:\-L/usr/lib ::' ${STAGING_BINDIR}/libusb-config + install -d ${STAGING_INCDIR}/ for X in usb.h do install -m 0644 ${S}/$X ${STAGING_INCDIR}/$X done } - |