1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-12-23 23:19:09 +00:00

use native compiler on FreeBSD

This commit is contained in:
Nikolai Lifanov 2016-07-05 15:14:11 -04:00
parent a2663fb93a
commit f1960ec73c

View File

@ -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