From 37ff7fbc111e3fb8f7dbf9dac4f82aef3960aad1 Mon Sep 17 00:00:00 2001 From: Mangix Date: Fri, 10 Jun 2016 14:11:22 -0700 Subject: [PATCH] Small fix for < 10 Windows --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.25.1