8445501740
Thanks to the 2 previous patches of the series, BR_PATH contains all locations in which host-packages may install programs. This patch replaces the occurrences TARGET_PATH and HOST_PATH with BR_PATH, everywhere these variables are used in the *.mk files. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
623 B
Makefile
22 lines
623 B
Makefile
################################################################################
|
|
#
|
|
# libhid
|
|
#
|
|
################################################################################
|
|
|
|
LIBHID_VERSION = 0.2.16
|
|
LIBHID_SITE = http://sources.buildroot.net/
|
|
LIBHID_DEPENDENCIES = libusb-compat libusb
|
|
LIBHID_INSTALL_STAGING = YES
|
|
LIBHID_AUTORECONF = YES
|
|
# configure runs libusb-config for cflags/ldflags. Ensure it picks up
|
|
# the target version
|
|
LIBHID_CONF_ENV = PATH=$(STAGING_DIR)/usr/bin:$(BR_PATH)
|
|
LIBHID_CONF_OPT = \
|
|
--disable-swig \
|
|
--disable-werror \
|
|
--without-doxygen \
|
|
--disable-package-config
|
|
|
|
$(eval $(autotools-package))
|