29cccab447
Fixes: http://autobuild.buildroot.net/results/106/106af20196089e74c35daabdae46f030981600bd/ Otherwise the (handwritten) configure script uses a config.guess script from 2010 to figure out the build host, breaking builds on ppc64le hosts. The result of --host / --build is only used to detect if we are building for Windows or not, which is why things are working on x86(-64) build hosts without specifying --host even though we are cross compiling - But this may change in the future, so we better pass the correct values. Passing extra jimtcl configure flags is unfortunately not forseen in the usb_modeswitch Makefile, so add a small patch making this possible. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# usb_modeswitch
|
|
#
|
|
################################################################################
|
|
|
|
USB_MODESWITCH_VERSION = 2.5.0
|
|
USB_MODESWITCH_SOURCE = usb-modeswitch-$(USB_MODESWITCH_VERSION).tar.bz2
|
|
USB_MODESWITCH_SITE = http://www.draisberghof.de/usb_modeswitch
|
|
USB_MODESWITCH_DEPENDENCIES = libusb
|
|
USB_MODESWITCH_LICENSE = GPL-2.0+
|
|
USB_MODESWITCH_LICENSE_FILES = COPYING
|
|
|
|
USB_MODESWITCH_BUILD_TARGETS = static
|
|
USB_MODESWITCH_INSTALL_TARGETS = install-static
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL)$(BR2_PACKAGE_TCL_SHLIB_ONLY),y)
|
|
USB_MODESWITCH_DEPENDENCIES += tcl
|
|
USB_MODESWITCH_BUILD_TARGETS = script
|
|
USB_MODESWITCH_INSTALL_TARGETS = install-script
|
|
endif
|
|
|
|
define USB_MODESWITCH_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS) -D_GNU_SOURCE -Wall -I." \
|
|
JIM_CONFIGURE_OPTS="--host=$(GNU_TARGET_NAME) --build=$(GNU_HOST_NAME)" \
|
|
-C $(@D) $(USB_MODESWITCH_BUILD_TARGETS)
|
|
endef
|
|
|
|
define USB_MODESWITCH_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
|
DESTDIR=$(TARGET_DIR) \
|
|
-C $(@D) $(USB_MODESWITCH_INSTALL_TARGETS)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|