diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2014-12-04 20:29:16 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2014-12-04 20:29:16 +0800 |
commit | c7c1d328a9b2c39c098add8474d54dd08f47888a (patch) | |
tree | 6aab84c317831a52ae2f214f60406c69424ad75c | |
parent | f5dfdbdff23a94404937ab137b9ea77f236fe2a4 (diff) | |
download | freebsd-ports-gnome-c7c1d328a9b2c39c098add8474d54dd08f47888a.tar.gz freebsd-ports-gnome-c7c1d328a9b2c39c098add8474d54dd08f47888a.tar.zst freebsd-ports-gnome-c7c1d328a9b2c39c098add8474d54dd08f47888a.zip |
- Check OPSYS along with OSVERSION
- Clarify BROKEN message
-rw-r--r-- | games/freeminer/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/freeminer/Makefile b/games/freeminer/Makefile index 9078df22ce43..ad674f321e3b 100644 --- a/games/freeminer/Makefile +++ b/games/freeminer/Makefile @@ -65,8 +65,8 @@ LUAJIT_LIB_DEPENDS= libluajit-5.1.so:${PORTSDIR}/lang/luajit .include <bsd.port.options.mk> -.if ${OSVERSION} < 900000 -BROKEN= does not build (lack of long long support) +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000 +BROKEN= does not build on 8.x (lack of long long support) .endif .if ${PORT_OPTIONS:MCLIENT} && ${PORT_OPTIONS:MSOUND} |