svn commit: r431652 - head/games/traindirector

Guido Falsi madpilot at FreeBSD.org
Mon Jan 16 14:52:52 UTC 2017


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
 


More information about the svn-ports-all mailing list