mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-05 06:12:35 +00:00
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
This commit is contained in:
parent
ee2d50d341
commit
5708b4cf6f
@ -78,7 +78,7 @@ SED_IN_PLACE := -i ""
|
|||||||
DARWIN_VERSION := $(shell uname -r | cut -d. -f1)
|
DARWIN_VERSION := $(shell uname -r | cut -d. -f1)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq (,$(filter $(UNAME),FreeBSD NetBSD))
|
ifneq (,$(filter $(UNAME),FreeBSD NetBSD))
|
||||||
CC := cc
|
CC := cc
|
||||||
CXX := c++
|
CXX := c++
|
||||||
SED := gsed
|
SED := gsed
|
||||||
|
Loading…
Reference in New Issue
Block a user