mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-29 21:14:28 -04:00 
			
		
		
		
	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
 |