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

Carlos J. Puga Medina cpm at FreeBSD.org
Fri Jan 13 03:22:06 UTC 2017


Author: cpm
Date: Fri Jan 13 03:22:05 2017
New Revision: 431340
URL: https://svnweb.freebsd.org/changeset/ports/431340

Log:
  MFH: r431339
  
  - Wrap the entire block with OPSYS check
  
  Reported by:	marino
  
  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 03:18:05 2017	(r431339)
+++ branches/2017Q1/www/chromium/Makefile	Fri Jan 13 03:22:05 2017	(r431340)
@@ -187,15 +187,17 @@ GN_ARGS+=	is_clang=true
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-clang
 .endif
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100508
+.if ${OPSYS} == FreeBSD
+.if ${OSVERSION} < 1100508
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-libc++-old
 .else
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-libc++-new
 .endif
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000
+.if ${OSVERSION} < 1100000
 EXTRA_PATCHES+=	${FILESDIR}/extra-patch-10
 .endif
+.endif
 
 .if ! ${PORT_OPTIONS:MKERBEROS}
 GN_ARGS+=	use_kerberos=true


More information about the svn-ports-all mailing list