Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 28 Mar 2018 23:31:59 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r465851 - head/www/nginx
Message-ID:  <201803282331.w2SNVxSS075489@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Wed Mar 28 23:31:59 2018
New Revision: 465851
URL: https://svnweb.freebsd.org/changeset/ports/465851

Log:
  Reverse condition.
  
  I am not sure why this PKGNAMESUFFIX dance happens exactly, but it was
  reversed.
  
  Pointy hat:	brnrd
  Sponsored by:	Absolight

Modified:
  head/www/nginx/Makefile   (contents, props changed)

Modified: head/www/nginx/Makefile
==============================================================================
--- head/www/nginx/Makefile	Wed Mar 28 23:00:04 2018	(r465850)
+++ head/www/nginx/Makefile	Wed Mar 28 23:31:59 2018	(r465851)
@@ -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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803282331.w2SNVxSS075489>