diff options
author | marino <marino@FreeBSD.org> | 2014-03-02 02:52:55 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-03-02 02:52:55 +0800 |
commit | f9afcb144483e423c309450fe2322f9ecc2d258c (patch) | |
tree | 5bc23be6025bd2b8549466cf46304863861be0b7 /www | |
parent | 3682f082b654a4c41f115d0e8f2e5a413740b8c5 (diff) | |
download | freebsd-ports-gnome-f9afcb144483e423c309450fe2322f9ecc2d258c.tar.gz freebsd-ports-gnome-f9afcb144483e423c309450fe2322f9ecc2d258c.tar.zst freebsd-ports-gnome-f9afcb144483e423c309450fe2322f9ecc2d258c.zip |
www/phalcon: Fix DragonFly build (No-Op for FreeBSD)
DragonFly 64-bit platform is called "x86_64", not "amd64".
Add this option to the variable substition -- and move this
to a separate line for better visibility. No-Op and no bump
for FreeBSD.
Diffstat (limited to 'www')
-rw-r--r-- | www/phalcon/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/phalcon/Makefile b/www/phalcon/Makefile index 17cf70ef7bfc..e3a2f0f4447e 100644 --- a/www/phalcon/Makefile +++ b/www/phalcon/Makefile @@ -12,7 +12,8 @@ COMMENT= Phalcon PHP Framework written in C-language LICENSE= BSD3CLAUSE -WRKSRC= ${WRKDIR}/c${PORTNAME}-${PORTVERSION}/build/${ARCH:S/amd64/64/:S/i386/32/}bits +PBITS= ${ARCH:S/amd64/64/:S/i386/32/:S/x86_64/64/} +WRKSRC= ${WRKDIR}/c${PORTNAME}-${PORTVERSION}/build/${PBITS}bits CFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS= --enable-phalcon --prefix=${PREFIX} \ |