From 0e39868b5a0a1b1bfc04aeb9dd4286c9b8717843 Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Mon, 29 Nov 2021 19:39:00 -0800 Subject: [PATCH] Fix typo in condition (if linux) for setting the SETCAP/setcap target As reported via irc by Nelgin, the setcap target was not being passed to 'make -C src/sbbs3' by default (on Linux) due to a misplaced paren. --- install/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/GNUmakefile b/install/GNUmakefile index 7b0a48985f..3fae5901d4 100644 --- a/install/GNUmakefile +++ b/install/GNUmakefile @@ -80,7 +80,7 @@ endif MKFLAGS += os=$(os) ifndef NOCAP -ifeq (($os),linux) +ifeq ($(os),linux) SETCAP := setcap endif endif -- GitLab