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