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

Carlos J. Puga Medina cpm at FreeBSD.org
Fri Jan 13 02:41:26 UTC 2017


Author: cpm
Date: Fri Jan 13 02:41:25 2017
New Revision: 431338
URL: https://svnweb.freebsd.org/changeset/ports/431338

Log:
  MFH: r431337
  
  - Always check OPSYS along with OSVERSION
  - Fix build on 11.0-STABLE [1]
  
  Reported by:	Jonathan Chen <jonc at chen.org.nz> [1] via email
  Reviewed by:	rene
  Approved by:	chromium (rene)
  
  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	Fri Jan 13 02:36:08 2017	(r431337)
+++ branches/2017Q1/www/chromium/Makefile	Fri Jan 13 02:41:25 2017	(r431338)
@@ -187,13 +187,13 @@ GN_ARGS+=	is_clang=true
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-clang
 .endif
 
-.if ${OSVERSION} < 1200017
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100508
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-libc++-old
 .else
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-libc++-new
 .endif
 
-.if ${OSVERSION} < 1100000
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-10
 .endif
 


More information about the svn-ports-all mailing list