commit ba451bd8aab15d2be0ca0d53ff064e4ef5ce4318
parent 84489f87e59e0adf81765fb1ba07ecbcfc73f90a
Author: John Crispin <john@phrozen.org>
Date: Wed, 18 May 2016 16:51:25 +0200
Merge pull request #2707 from nxhack/node-hid-fix-compile-error
node-hid: fix compile error, condition of not-installing 'libusb-dev' package at cross-compile host.
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/lang/node-hid/Makefile b/lang/node-hid/Makefile
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NPM_NAME:=hid
PKG_NAME:=node-$(PKG_NPM_NAME)
PKG_VERSION:=0.5.1
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/node-hid/node-hid.git
@@ -43,8 +43,7 @@ endef
CPU:=$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))
-EXTRA_LDFLAGS+="-lhidapi-libusb"
-EXTRA_CFLAGS+="-I$(STAGING_DIR)/usr/include/hidapi/"
+EXTRA_CFLAGS+=-I$(STAGING_DIR)/usr/include/libusb-1.0
define Build/Compile
$(MAKE_VARS) \