a554109af8
Build of package will sometime fails because of the following issue: install-static target has two dependencies: dispatcher-static and install-common Because dispatcher-static is not a file but only a target, it will always be called to build usb_modeswitch_dispatcher. So, even if install-common depends on usb_modeswitch_dispatcher, in some rare cases, install-static won't be able to install usb_modeswitch_dispatcher because it is being rebuild by dispatcher-static To fix this issue, disable parallel build Fixes: - http://autobuild.buildroot.org/results/8297be35725b816ff5afaf909605ceb41223efb6 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
46 lines
1.6 KiB
Makefile
46 lines
1.6 KiB
Makefile
################################################################################
|
||
#
|
||
# usb_modeswitch
|
||
#
|
||
################################################################################
|
||
|
||
USB_MODESWITCH_VERSION = 2.5.2
|
||
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
|
||
# Package does not build in parallel due to improper make rules
|
||
USB_MODESWITCH_MAKE = $(MAKE1)
|
||
|
||
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
|
||
|
||
# build system of embedded jimtcl doesn't use autotools, but does use
|
||
# an old version of gnuconfig which doesn't know all the architectures
|
||
# supported by Buildroot, so update config.guess / config.sub like we
|
||
# do in pkg-autotools.mk
|
||
USB_MODESWITCH_POST_PATCH_HOOKS += UPDATE_CONFIG_HOOK
|
||
|
||
define USB_MODESWITCH_BUILD_CMDS
|
||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
||
$(if $(BR2_INSTALL_LIBSTDCPP),,CXX=false) \
|
||
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))
|