configure script expects darwin-ppc-cc and not darwin-powerpc-cc.
'should be ok' joerg@
This commit is contained in:
parent
602bdb48c5
commit
ba63b2d5f7
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue