0500c7c603
On Blackfin, the build fails due to the use of the L suffix instead of LL. To fix this, this commit adds an upstream patch from the project Github repository. Fixes: http://autobuild.buildroot.org/results/6d7d2034836e0d8705bba2f2597d3e1cde2c43b8/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# lshw
|
|
#
|
|
################################################################################
|
|
|
|
LSHW_VERSION = B.02.17
|
|
LSHW_SITE = http://ezix.org/software/files
|
|
LSHW_PATCH = \
|
|
http://git.alpinelinux.org/cgit/aports/plain/testing/lshw/basename-limits-long-bits.patch \
|
|
http://git.alpinelinux.org/cgit/aports/plain/testing/lshw/no-private-uint.patch \
|
|
https://github.com/lyonel/lshw/commit/988f5449791ebf869ab9fa7520463dab4eae3404.patch
|
|
LSHW_LICENSE = GPLv2
|
|
LSHW_LICENSE_FILES = COPYING
|
|
|
|
LSHW_CFLAGS = $(TARGET_CFLAGS)
|
|
ifeq ($(BR2_ENABLE_LOCALE),)
|
|
LSHW_CFLAGS += -DNONLS
|
|
endif
|
|
|
|
LSHW_MAKE_OPTS = CC="$(TARGET_CC)" CXX="$(TARGET_CXX)" AR="$(TARGET_AR)" \
|
|
RPM_OPT_FLAGS="$(LSHW_CFLAGS)" all
|
|
LSHW_MAKE_ENV = LIBS="$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),-lintl)"
|
|
LSHW_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
|
|
|
|
define LSHW_BUILD_CMDS
|
|
$(LSHW_MAKE_ENV) $(MAKE) -C $(@D)/src $(LSHW_MAKE_OPTS)
|
|
endef
|
|
|
|
define LSHW_INSTALL_TARGET_CMDS
|
|
$(LSHW_MAKE_ENV) $(MAKE) -C $(@D)/src DESTDIR=$(TARGET_DIR) \
|
|
$(LSHW_MAKE_OPTS) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|