From: Roy Marples Date: Thu, 20 Jul 2023 09:48:37 +0000 (+0100) Subject: Fix --enable-secomp X-Git-Tag: v10.0.3~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43c4b1b57264b7b2d565a517b32b6e80c06c89e0;p=thirdparty%2Fdhcpcd.git Fix --enable-secomp --- diff --git a/configure b/configure index d9596688..4fb29b06 100755 --- a/configure +++ b/configure @@ -590,7 +590,7 @@ if [ "$PRIVSEP" = yes ]; then case "$OS" in linux*) echo "PRIVSEP_SRCS+= privsep-linux.c" >>$CONFIG_MK - if [ -n "$SECCOMP" ] && [ "$SECCOMP" != no ]; then + if [ -n "$SECCOMP" ] && [ "$SECCOMP" = no ]; then echo "#define DISABLE_SECCOMP" >>$CONFIG_H fi ;;