mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-29 12:13:01 +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>
18 lines
477 B
Makefile
18 lines
477 B
Makefile
################################################################################
|
|
#
|
|
# libsrx
|
|
#
|
|
################################################################################
|
|
|
|
LIBSRX_VERSION = 1.0.0
|
|
LIBSRX_SITE_METHOD = local
|
|
LIBSRX_SITE = $(BR2_EXTERNAL_INFIX_PATH)/src/libsrx
|
|
LIBSRX_LICENSE = BSD-3-Clause
|
|
LIBSRX_LICENSE_FILES = LICENSE
|
|
LIBSRX_INSTALL_STAGING = YES
|
|
LIBSRX_REDISTRIBUTE = NO
|
|
LIBSRX_DEPENDENCIES = sysrepo
|
|
LIBSRX_AUTORECONF = YES
|
|
|
|
$(eval $(autotools-package))
|