diff options
author | mat <mat@FreeBSD.org> | 2018-03-29 07:31:59 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2018-03-29 07:31:59 +0800 |
commit | c5ba43a3b7c44fbe3be42766fca5716e275d7207 (patch) | |
tree | 4f72cf4f12398c16a740b1b25d5771431821f8b9 /www | |
parent | f2c43a4fa3590b9874d381de12e4690b127b0230 (diff) | |
download | freebsd-ports-gnome-c5ba43a3b7c44fbe3be42766fca5716e275d7207.tar.gz freebsd-ports-gnome-c5ba43a3b7c44fbe3be42766fca5716e275d7207.tar.zst freebsd-ports-gnome-c5ba43a3b7c44fbe3be42766fca5716e275d7207.zip |
Reverse condition.
I am not sure why this PKGNAMESUFFIX dance happens exactly, but it was
reversed.
Pointy hat: brnrd
Sponsored by: Absolight
Diffstat (limited to 'www')
-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 2a7aff4a8d3b..a212b17d9b51 100644 --- a/www/nginx/Makefile +++ b/www/nginx/Makefile @@ -205,7 +205,7 @@ IGNORE= requires at least HTTP or MAIL to \ IGNORE= CT option requires OpenSSL 1.0.2, add DEFAULT_VERSIONS+=ssl=openssl to /etc/make.conf .endif -.if ${PORT_OPTIONS:MHTTP_REWRITE} || defined(USE_HTTP_REWRITE) +.if !${PORT_OPTIONS:MHTTP_REWRITE} && !defined(USE_HTTP_REWRITE) PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-nopcre .endif |