diff options
author | cegger <cegger> | 2012-03-14 22:48:58 +0000 |
---|---|---|
committer | cegger <cegger> | 2012-03-14 22:48:58 +0000 |
commit | eaeb0b3574b68ed7cd84435ce8869f48b09d4750 (patch) | |
tree | ebfc8431f7d75bb434917dae48f0df7f9a279597 /security | |
parent | 303b84c1949e5b12288f1b0356cccfc2aa91c251 (diff) | |
download | pkgsrc-eaeb0b3574b68ed7cd84435ce8869f48b09d4750.tar.gz |
configure script expects darwin-ppc-cc and not darwin-powerpc-cc.
'should be ok' joerg@
Diffstat (limited to 'security')
-rw-r--r-- | security/openssl/Makefile | 4 |
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 |