diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-01-12 17:06:07 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-01-12 17:06:07 +0000 |
commit | 2b4a63c97b95c8b5823c7e4d7d7fef7c061cdbb0 (patch) | |
tree | f55d6e1d77d73d9c17351e02ec8df1b8855943a5 | |
parent | - Always check OPSYS along with OSVERSION (diff) |
- Always check OPSYS along with OSVERSION
Approved by: portmgr blanket
Notes
Notes:
svn path=/head/; revision=431289
-rw-r--r-- | www/nginx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/nginx/Makefile b/www/nginx/Makefile index f4210e09374c..d35cf21bb201 100644 --- a/www/nginx/Makefile +++ b/www/nginx/Makefile @@ -1159,7 +1159,7 @@ GROUPS?=${WWWGRP} .if defined(NGINX_OPENSSL) USE_OPENSSL= yes -.if ${OSVERSION} < 1100000 +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 WITH_OPENSSL_PORT=yes .endif .endif |