mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 12:33:02 +02:00
When running `make legal-info` Buildroot will collect source and licenses for all packages, which generates a few warnings for our local packages. Local packages are skipped. > The source code for packages that set <PKG>_REDISTRIBUTE = NO will not > be saved. Patches that were applied are also saved, along with a file > named series that lists the patches in the order they were applied. Hence, setting 'foo_REDISTRIBUTE = NO' disables the warning, which seems like a good idea to reduce the number of unnecessary questions we might otherwise get. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
22 lines
532 B
Makefile
22 lines
532 B
Makefile
################################################################################
|
|
#
|
|
# net
|
|
#
|
|
################################################################################
|
|
|
|
NET_VERSION = 1.0
|
|
NET_LICENSE = MIT
|
|
NET_LICENSE_FILES = LICENSE
|
|
NET_SITE_METHOD = local
|
|
NET_SITE = $(BR2_EXTERNAL_INFIX_PATH)/src/net
|
|
NET_REDISTRIBUTE = NO
|
|
NET_DEPENDENCIES = libite
|
|
NET_AUTORECONF = YES
|
|
|
|
define NET_INSTALL_EXTRA
|
|
chmod +x $(TARGET_DIR)/usr/share/net/*.sh
|
|
endef
|
|
NET_POST_INSTALL_TARGET_HOOKS += NET_INSTALL_EXTRA
|
|
|
|
$(eval $(autotools-package))
|