Date: Mon, 16 Jan 2017 14:52:51 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431652 - head/games/traindirector Message-ID: <201701161452.v0GEqpM7097372@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: madpilot Date: Mon Jan 16 14:52:51 2017 New Revision: 431652 URL: https://svnweb.freebsd.org/changeset/ports/431652 Log: Fix conditional to correctly check for affected versions. Pointy hat to: me Modified: head/games/traindirector/Makefile Modified: head/games/traindirector/Makefile ============================================================================== --- head/games/traindirector/Makefile Mon Jan 16 14:47:08 2017 (r431651) +++ head/games/traindirector/Makefile Mon Jan 16 14:52:51 2017 (r431652) @@ -30,7 +30,7 @@ MAKEFILE= Makefile.fc9 .include <bsd.port.pre.mk> -.if ${OPSYS} == "FreeBSD" && (${OSVERSION} >= 1200017 || ${OSVERSION} >= 1100508) +.if ${OPSYS} == "FreeBSD" && ((${OSVERSION} >= 1100508 && ${OSVERSION} < 1200000) || ${OSVERSION} >= 1200017) BROKEN= Fails to compile with libc++ 3.9.0 and later .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701161452.v0GEqpM7097372>