summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libusb/libusb_0.1.7.oe7
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
}
-