diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2006-02-09 11:43:46 +0000 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2006-02-09 11:43:46 +0000 |
commit | fac1ac227397cc7fdd82e9743dc5fe5c439271ba (patch) | |
tree | 150285c4bfbc097f2bec78613d7aede73c1e107a /games | |
parent | 8762492ea4dc52d63569e6512b85dd245cb2784b (diff) | |
download | FreeBSD-ports-fac1ac227397cc7fdd82e9743dc5fe5c439271ba.zip FreeBSD-ports-fac1ac227397cc7fdd82e9743dc5fe5c439271ba.tar.gz |
Depessimize last commit, port only dumps core on
${ARCH} == "amd64" && ${OSVERSION} >= 700000
Diffstat (limited to 'games')
-rw-r--r-- | games/typespeed/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/typespeed/Makefile b/games/typespeed/Makefile index a502824..56c075f 100644 --- a/games/typespeed/Makefile +++ b/games/typespeed/Makefile @@ -23,8 +23,8 @@ MAKE_ENV= CPPFLAGS="${CPPFLAGS}" LFLAGS="${LDFLAGS}" .include <bsd.port.pre.mk> -.if ${ARCH} == "amd64" -BROKEN= "Coredump during runtime on amd64" +.if ${ARCH} == "amd64" && ${OSVERSION} >= 700000 +BROKEN= "Coredump during runtime on amd64 running OSVERSION >= 700000" .endif post-patch: |