From: Mangix Date: Fri, 10 Jun 2016 21:11:22 +0000 (-0700) Subject: Small fix for < 10 Windows X-Git-Tag: v3.00~72^2 X-Git-Url: https://www.flypig.org.uk/git/?p=hashcat.git;a=commitdiff_plain;h=37ff7fbc111e3fb8f7dbf9dac4f82aef3960aad1 Small fix for < 10 Windows --- diff --git a/src/Makefile b/src/Makefile index ce6c29e..2ca5fd0 100644 --- a/src/Makefile +++ b/src/Makefile @@ -13,8 +13,9 @@ PROG_NAME := hashcat ## UNAME := $(shell uname -s) +UNAME := $(patsubst CYGWIN_NT-%,CYGWIN_NT-,$(UNAME)) -ifeq (,$(filter $(UNAME),Linux Darwin CYGWIN_NT-10.0)) +ifeq (,$(filter $(UNAME),Linux Darwin CYGWIN_NT-)) $(error "! Your Operating System ($(UNAME)) is not supported by $(PROG_NAME) Makefile") endif