From 5708b4cf6f5111e5e75eca38bd698781fac50021 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Tue, 11 Jan 2022 15:05:02 -0600 Subject: [PATCH] Fix logic flaw Line 81 contains inverted logic introduced by PR#3117, this should fix that logic to detect BSD and correctly select `gsed` on BSD and not on linux --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 369eb7dc0..fc0afc4fb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -78,7 +78,7 @@ SED_IN_PLACE := -i "" DARWIN_VERSION := $(shell uname -r | cut -d. -f1) endif -ifeq (,$(filter $(UNAME),FreeBSD NetBSD)) +ifneq (,$(filter $(UNAME),FreeBSD NetBSD)) CC := cc CXX := c++ SED := gsed