From c9b8db622f3b2bff818bb94d9688131f92dd6ac0 Mon Sep 17 00:00:00 2001 From: blshkv Date: Sat, 13 Feb 2016 22:49:13 +0800 Subject: [PATCH] hashcat: 9999 update hack of Makefile --- app-crypt/hashcat/hashcat-9999.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-crypt/hashcat/hashcat-9999.ebuild b/app-crypt/hashcat/hashcat-9999.ebuild index ada86bdcc..706030220 100644 --- a/app-crypt/hashcat/hashcat-9999.ebuild +++ b/app-crypt/hashcat/hashcat-9999.ebuild @@ -16,8 +16,8 @@ KEYWORDS="~x86 ~amd64" src_prepare() { #quick hack to compile on supported platforms only - use amd64 && sed -e "s|all: binaries|all: posix64|g" -i src/Makefile - use x86 && sed -e "s|all: binaries|all: posix32|g" -i src/Makefile + use amd64 && sed -e "s|all: binaries|all: linux64|g" -i src/Makefile + use x86 && sed -e "s|all: binaries|all: linux32|g" -i src/Makefile #do not strip sed -e "s|-s -fomit-frame-pointer|-fomit-frame-pointer|g" -i src/Makefile }