a17b8eaa2e
The license folder is a core part of OpenWrt and all GPL-2.0 licensed. Use SPDX license tags to allow machines to check licenses. Signed-off-by: Paul Spooren <mail@aparcar.org> [rebase, keep some Copyright lines, sharpen commit message] Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
13 lines
270 B
Makefile
13 lines
270 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2015-2020 OpenWrt.org
|
|
|
|
PKG_CONFIG_DEPENDS+= CONFIG_KERNEL_SECCOMP
|
|
|
|
ifeq ($(CONFIG_KERNEL_SECCOMP),y)
|
|
define InstallSeccomp
|
|
$(INSTALL_DIR) $(1)/etc/seccomp
|
|
$(INSTALL_DATA) $(2) $(1)/etc/seccomp/
|
|
endef
|
|
endif
|