From owner-svn-ports-all@freebsd.org Mon Jan 16 14:52:52 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92E05CB22AE; Mon, 16 Jan 2017 14:52:52 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64B4B1A59; Mon, 16 Jan 2017 14:52:52 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0GEqpH5097373; Mon, 16 Jan 2017 14:52:51 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0GEqpM7097372; Mon, 16 Jan 2017 14:52:51 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201701161452.v0GEqpM7097372@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Mon, 16 Jan 2017 14:52:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431652 - head/games/traindirector X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Jan 2017 14:52:52 -0000 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 -.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