255a809005
In commit 3e79bd3f45
("crda: bump
version to 4.14"), the value of CRDA_SOURCE was changed to use what is
the default value for <pkg>_SOURCE, triggering a warning from
check-package:
package/crda/crda.mk:8: remove default value of _SOURCE variable (http://nightly.buildroot.org/#generic-package-reference)
This commit fixes that by dropping CRDA_SOURCE entirely.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
627 B
Makefile
23 lines
627 B
Makefile
################################################################################
|
|
#
|
|
# crda
|
|
#
|
|
################################################################################
|
|
|
|
CRDA_VERSION = 4.14
|
|
CRDA_SITE = https://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/crda.git/snapshot
|
|
CRDA_DEPENDENCIES = host-pkgconf host-python-pycrypto libnl libgcrypt
|
|
CRDA_LICENSE = ISC
|
|
CRDA_LICENSE_FILES = LICENSE
|
|
|
|
define CRDA_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(MAKE) all_noverify -C $(@D)
|
|
endef
|
|
|
|
define CRDA_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) install -C $(@D) DESTDIR=$(TARGET_DIR)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|