From: Nikolai Lifanov Date: Tue, 5 Jul 2016 19:14:11 +0000 (-0400) Subject: use native compiler on FreeBSD X-Git-Url: https://www.flypig.org.uk/git/?p=hashcat.git;a=commitdiff_plain;h=f1960ec73c074fb7d4d4c00ecbb3f418f1b972db use native compiler on FreeBSD --- diff --git a/src/Makefile b/src/Makefile index a36bf34..b6730b8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -63,7 +63,11 @@ FIND := find INSTALL := install RM := rm SED := sed -ifeq ($(UNAME),Darwin,FreeBSD) +ifeq ($(UNAME),Darwin) +SED := gsed +endif +ifeq ($(UNAME),FreeBSD) +CC := cc SED := gsed endif