Merge pull request #370 from philsmd/master
authorJens Steube <jens.steube@gmail.com>
Sat, 11 Jun 2016 07:40:47 +0000 (09:40 +0200)
committerGitHub <noreply@github.com>
Sat, 11 Jun 2016 07:40:47 +0000 (09:40 +0200)
make: indentation fix + comments about cygwin builds

src/Makefile

index 0b1ba80..76f3a6f 100644 (file)
@@ -13,7 +13,9 @@ PROG_NAME                := hashcat
 ##
 
 UNAME                    := $(shell uname -s)
-UNAME                   := $(patsubst CYGWIN_NT-%,CYGWIN_NT-,$(UNAME))
+
+# we need to strip the windows version number to be able to build hashcat on cygwin hosts
+UNAME                    := $(patsubst CYGWIN_NT-%,CYGWIN_NT-,$(UNAME))
 
 ifeq (,$(filter $(UNAME),Linux Darwin CYGWIN_NT-))
 $(error "! Your Operating System ($(UNAME)) is not supported by $(PROG_NAME) Makefile")