diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-03-11 09:04:13 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-03-11 09:04:13 +0000 |
commit | ffe5f5c25d5df82890e9d7035274b7600736e2d8 (patch) | |
tree | c249cc0eb492bad1494818590828863a3ea77790 /devel/linguist | |
parent | 0bbdb8ea0d943ea8df10ff1204d425cfe5225b0f (diff) | |
download | FreeBSD-ports-ffe5f5c25d5df82890e9d7035274b7600736e2d8.zip FreeBSD-ports-ffe5f5c25d5df82890e9d7035274b7600736e2d8.tar.gz |
Workaround a c++ bug on alpha.
Submitted by: steve
Diffstat (limited to 'devel/linguist')
-rw-r--r-- | devel/linguist/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/linguist/Makefile b/devel/linguist/Makefile index 0f9cd20..6115102 100644 --- a/devel/linguist/Makefile +++ b/devel/linguist/Makefile @@ -28,6 +28,12 @@ MAKE_ENV= TMAKEPATH="${LOCALBASE}/share/tmake/freebsd-g++" \ MOC="${X11BASE}/bin/moc2" MAKE_ARGS= -e +.include <bsd.port.pre.mk> + +.if ${MACHINE_ARCH} == "alpha" +CFLAGS+= -O0 +.endif + post-configure: @${PERL} -pi -e 's|\$\(SUBDIRS\):.*tmake_all|\$\(SUBDIRS\):|' \ ${WRKSRC}/Makefile @@ -41,4 +47,4 @@ do-install: ${MKDIR} ${PREFIX}/share/doc/linguist ${INSTALL_MAN} ${WRKSRC}/linguist/tutorial/doc/html/* ${PREFIX}/share/doc/linguist -.include <bsd.port.mk> +.include <bsd.port.post.mk> |