svn commit: r431729 - branches/2017Q1/www/chromium

Carlos J. Puga Medina cpm at FreeBSD.org
Tue Jan 17 11:52:22 UTC 2017


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 at 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
 


More information about the svn-ports-all mailing list