Skip to content
Snippets Groups Projects
Commit a1d0be8c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

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.
parent 6b5de04a
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -80,7 +80,7 @@ endif ...@@ -80,7 +80,7 @@ endif
MKFLAGS += os=$(os) MKFLAGS += os=$(os)
ifndef NOCAP ifndef NOCAP
ifeq (($os),linux) ifeq ($(os),linux)
SETCAP := setcap SETCAP := setcap
endif endif
endif endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment