diff options
author | Phil Sutter <phil@nwl.cc> | 2010-01-19 23:57:50 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-20 18:51:06 +0100 |
commit | ec2537228de9acd23203bd5589a3d78aebc565f9 (patch) | |
tree | 772102f7767e393ee5309b48791f5c9dbd860dac | |
parent | ae3175dedfd77b39ddbf76059f2b1242d1ed96bc (diff) |
usbutils needs libusb-compat and libpthread
The later dependency is implicitly met at built-time (due to it being
provided by the libc), but still needed at run-time.
-rw-r--r-- | package/usbutils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/usbutils/Makefile b/package/usbutils/Makefile index 43aafc6df..01507694b 100644 --- a/package/usbutils/Makefile +++ b/package/usbutils/Makefile @@ -6,11 +6,11 @@ include ${TOPDIR}/rules.mk PKG_NAME:= usbutils PKG_VERSION:= 0.73 PKG_RELEASE:= 1 -PKG_BUILDDEP+= libusb +PKG_BUILDDEP+= libusb libusb-compat PKG_MD5SUM:= 88978b4ad891f610620b1b8e5e0f43eb PKG_DESCR:= A program to list USB devices PKG_SECTION:= misc -PKG_DEPENDS:= libusb +PKG_DEPENDS:= libusb libusb-compat libpthread PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=linux-usb/} include ${TOPDIR}/mk/package.mk |