On 8/18/2012 10:59 PM, Brian Callahan wrote:
Hi ports --
A while ago, I reported that devel/doxygen did not build on mips64el
unless --english-only was enabled. Later, it was extended to include
mips64. I've just discovered that the if statement dealing with mips64
and mips64el is somehow wrong, as it doesn't pass --english-only when
building on a mips64el machine. Attached is a patch that fixes this.
Thanks.
~Brian
Bumping this. mips64el won't build without it.
Thanks.
~Brian
Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/doxygen/Makefile,v
retrieving revision 1.24
diff -u -p -r1.24 Makefile
--- Makefile 13 Apr 2012 16:08:20 -0000 1.24
+++ Makefile 19 Aug 2012 02:54:06 -0000
@@ -44,7 +44,7 @@ CONFIGURE_ENV= QTDIR=${LOCALBASE}
MODULES+= x11/qt4
.endif
-.if ${ARCH:Mmips64} || ${ARCH:Mmips64el}
+.if ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el"
# ld(1) fails
CONFIGURE_ARGS+= --english-only
.endif