diff options
author | John Crispin <john@openwrt.org> | 2015-03-27 21:11:17 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-27 21:11:17 +0000 |
commit | 6484aa1d289ea48b1cfcc11d581cd29977897848 (patch) | |
tree | e9284bd75e31190f8400e33be776fbb87c10a8cd /package/system/procd/Makefile | |
parent | 54dd25eef41986c18fae9453cc2bc713d195c390 (diff) | |
download | upstream-6484aa1d289ea48b1cfcc11d581cd29977897848.tar.gz upstream-6484aa1d289ea48b1cfcc11d581cd29977897848.tar.bz2 upstream-6484aa1d289ea48b1cfcc11d581cd29977897848.zip |
procd: remove superflous @ in depends line
the @ syntax is not required by Kbuild
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45070
Diffstat (limited to 'package/system/procd/Makefile')
-rw-r--r-- | package/system/procd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/procd/Makefile b/package/system/procd/Makefile index f502307f15..2fd95f020a 100644 --- a/package/system/procd/Makefile +++ b/package/system/procd/Makefile @@ -82,7 +82,7 @@ config PROCD_JAIL_SUPPORT config PROCD_SECCOMP_SUPPORT bool default y - depends on (mips || mipsel || i386 || x86_64) && !@TARGET_uml && @KERNEL_SECCOMP + depends on (mips || mipsel || i386 || x86_64) && !TARGET_uml && @KERNEL_SECCOMP endmenu endef |