From 852363d80a364dc1e6c262b102cd493c73ddf17c Mon Sep 17 00:00:00 2001 From: Thomas Merkel Date: Thu, 24 Aug 2017 15:33:26 +0200 Subject: [PATCH] Fix typo for BUILD_TARGET on illumos x86-64 The BUILD_TARGET uses a minus instead of underscore for x86-64. Use the default compiler which is configured with PKGSRC_COMPILER because gcc works. --- security/john/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/security/john/Makefile b/security/john/Makefile index 06ce99381558..9ecb7a73e47f 100644 --- a/security/john/Makefile +++ b/security/john/Makefile @@ -2,6 +2,7 @@ # DISTNAME= john-1.8.0 +PKGREVISION= 1 CATEGORIES= security textproc MASTER_SITES= http://www.openwall.com/john/j/ EXTRACT_SUFX= .tar.xz @@ -26,7 +27,7 @@ BUILD_TARGET= solaris-sparcv9-${${PKGSRC_COMPILER}==gcc:?gcc:cc} . elif ${MACHINE_ARCH} == "i386" BUILD_TARGET= solaris-x86-any-${${PKGSRC_COMPILER}==gcc:?gcc:cc} . elif ${MACHINE_ARCH} == "x86_64" -BUILD_TARGET= solaris-x86_64-${${PKGSRC_COMPILER}==gcc:?gcc:cc} +BUILD_TARGET= solaris-x86-64-${PKGSRC_COMPILER} . endif .elif ${OPSYS} == "NetBSD" . if ${MACHINE_ARCH} == "i386"