diff options
author | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2017-01-13 03:18:05 +0000 |
---|---|---|
committer | Carlos J. Puga Medina <cpm@FreeBSD.org> | 2017-01-13 03:18:05 +0000 |
commit | 685a3505c8c93b12eb7a1538e8e8b8e516ec00b7 (patch) | |
tree | 6a7d3ac548fb88004954dc1bf22a69d64c073fe3 | |
parent | - Always check OPSYS along with OSVERSION (diff) |
- Wrap the entire block with OPSYS check
Reported by: marino
MFH: 2017Q1 (blanket)
Notes
Notes:
svn path=/head/; revision=431339
-rw-r--r-- | www/chromium/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/chromium/Makefile b/www/chromium/Makefile index 2f70379e836d..9a82600dd743 100644 --- a/www/chromium/Makefile +++ b/www/chromium/Makefile @@ -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 |