Date: Thu, 29 Dec 2016 10:21:01 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429885 - head/cad/openvsp Message-ID: <201612291021.uBTAL1Yv034307@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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++
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612291021.uBTAL1Yv034307>