Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Jan 2017 11:52:21 +0000 (UTC)
From:      "Carlos J. Puga Medina" <cpm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r431729 - branches/2017Q1/www/chromium
Message-ID:  <201701171152.v0HBqL9k020517@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cpm
Date: Tue Jan 17 11:52:21 2017
New Revision: 431729
URL: https://svnweb.freebsd.org/changeset/ports/431729

Log:
  MFH: r431728
  
  - Fix conditional to correctly check
  
  Reported by:	Tomoaki AOKI <junchoon@dec.sakura.ne.jp>
  
  Approved by:	ports-secteam (blanket)

Modified:
  branches/2017Q1/www/chromium/Makefile
Directory Properties:
  branches/2017Q1/   (props changed)

Modified: branches/2017Q1/www/chromium/Makefile
==============================================================================
--- branches/2017Q1/www/chromium/Makefile	Tue Jan 17 11:49:40 2017	(r431728)
+++ branches/2017Q1/www/chromium/Makefile	Tue Jan 17 11:52:21 2017	(r431729)
@@ -196,10 +196,10 @@ EXTRA_PATCHES+=	${FILESDIR}/extra-patch-
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-10
 .endif
 
-.if ${OSVERSION} < 1200017 || (${OSVERSION} >= 1100507 && ${OSVERSION} < 1200000)
-EXTRA_PATCHES+=	${FILESDIR}/extra-patch-libc++-old
-.else
+.if ${OSVERSION} >= 1200017 || (${OSVERSION} >= 1100508 && ${OSVERSION} <= 1200000)
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-libc++-new
+.else
+EXTRA_PATCHES+=	${FILESDIR}/extra-patch-libc++-old
 .endif
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701171152.v0HBqL9k020517>