summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2014-04-11 12:47:13 +0200
committerJuergen Beisert <jbe@pengutronix.de>2014-04-11 12:47:13 +0200
commit775cc9cd7242369edc2f8d5f0b36d4c69fc69ce3 (patch)
treeeb6f21b04896f987f27e26588ccd645d280a056a
parentda4e93ff7435b1d9250591294383d180fe2dbea7 (diff)
downloadptxdist-775cc9cd7242369edc2f8d5f0b36d4c69fc69ce3.tar.gz
ptxdist-775cc9cd7242369edc2f8d5f0b36d4c69fc69ce3.tar.xz
libusb: fix host dependencyptxdist-2014.04.0
Since commit 127924094678e459b0d31cd81605317479d80c7f the libusbx is used instead of the original libusb. The new library depends on libudev by default and the configure step fails if this library is not present on the host. Switch off this feature to avoid this new dependency. Signed-off-by: Juergen Beisert <jbe@pengutronix.de>
-rw-r--r--rules/host-libusb.make3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules/host-libusb.make b/rules/host-libusb.make
index ffcd19182..4ec1ac7f0 100644
--- a/rules/host-libusb.make
+++ b/rules/host-libusb.make
@@ -23,6 +23,7 @@ HOST_PACKAGES-$(PTXCONF_HOST_LIBUSB) += host-libusb
HOST_LIBUSB_AUTOCONF := \
$(HOST_AUTOCONF) \
- --disable-static
+ --disable-static \
+ --disable-udev
# vim: syntax=make