summaryrefslogtreecommitdiff
path: root/security/openssl/Makefile
diff options
context:
space:
mode:
authorcegger <cegger>2012-03-14 22:48:58 +0000
committercegger <cegger>2012-03-14 22:48:58 +0000
commit18ad0226b6b49ac30debf6e5f34ac313cffd1bd3 (patch)
treeebfc8431f7d75bb434917dae48f0df7f9a279597 /security/openssl/Makefile
parent348fe64fcbec10ed73994de15ae5fc369439cb77 (diff)
downloadpkgsrc-18ad0226b6b49ac30debf6e5f34ac313cffd1bd3.tar.gz
configure script expects darwin-ppc-cc and not darwin-powerpc-cc.
'should be ok' joerg@
Diffstat (limited to 'security/openssl/Makefile')
-rw-r--r--security/openssl/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile
index 7876125a616..49065e8b5b4 100644
--- a/security/openssl/Makefile
+++ b/security/openssl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.163 2012/03/13 03:11:32 taca Exp $
+# $NetBSD: Makefile,v 1.164 2012/03/14 22:48:58 cegger Exp $
OPENSSL_SNAPSHOT?= # empty
OPENSSL_STABLE?= # empty
@@ -89,6 +89,8 @@ CONFIGURE_ARGS+= tru64-alpha-cc
CONFIGURE_SCRIPT= ./Configure
. if defined(ABI) && ${ABI} == "64"
CONFIGURE_ARGS+= darwin64-${MACHINE_ARCH}-cc
+. elif ${MACHINE_ARCH} == "powerpc"
+CONFIGURE_ARGS+= darwin-ppc-cc
. else
CONFIGURE_ARGS+= darwin-${MACHINE_ARCH}-cc
. endif