svn commit: r429885 - head/cad/openvsp

Dmitry Marakasov amdmi3 at FreeBSD.org
Thu Dec 29 10:21:02 UTC 2016


Author: amdmi3
Date: Thu Dec 29 10:21:01 2016
New Revision: 429885
URL: https://svnweb.freebsd.org/changeset/ports/429885

Log:
  - Fix condition for FreeBSD 10.1
  
  Approved by:	portmgr blanket

Modified:
  head/cad/openvsp/Makefile

Modified: head/cad/openvsp/Makefile
==============================================================================
--- head/cad/openvsp/Makefile	Thu Dec 29 09:39:48 2016	(r429884)
+++ head/cad/openvsp/Makefile	Thu Dec 29 10:21:01 2016	(r429885)
@@ -43,7 +43,7 @@ USES=		cmake:outsource jpeg
 
 .include <bsd.port.options.mk>
 
-.if ${OSVERSION} == 1001000
+.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 && ${OSVERSION} < 1002000
 # Fails to build with GCC 4.9 in 10.1
 USE_GCC=	4.8
 LDFLAGS+=	-L${LOCALBASE}/lib/c++


More information about the svn-ports-head mailing list