svn commit: r539968 - head/databases/couchdb3

Dave Cottlehuber dch at FreeBSD.org
Tue Jun 23 09:43:41 UTC 2020


Author: dch
Date: Tue Jun 23 09:43:40 2020
New Revision: 539968
URL: https://svnweb.freebsd.org/changeset/ports/539968

Log:
  databases/couchdb3: use more appropriate regex escapes
  
  See r538197 for further clarification

Modified:
  head/databases/couchdb3/Makefile

Modified: head/databases/couchdb3/Makefile
==============================================================================
--- head/databases/couchdb3/Makefile	Tue Jun 23 09:37:30 2020	(r539967)
+++ head/databases/couchdb3/Makefile	Tue Jun 23 09:43:40 2020	(r539968)
@@ -68,8 +68,8 @@ post-patch:
 	    -e 's,%%LOCALBASE%%,${LOCALBASE},g' \
 	    -e 's,%%PORTNAME%%,${PORTNAME},g' \
 	    -e 's,%%WWWDIR%%,${WWWDIR},g' \
-	    -e 's,\$COUCHDB_USER,${USERS},g' \
-	    -e 's,\$LOG_FILE,${LOGFILE},g' \
+	    -e 's,$$COUCHDB_USER,${USERS},g' \
+	    -e 's,$$LOG_FILE,${LOGFILE},g' \
 	    ${WRKSRC}/configure
 # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=238514
 .if ${OPSYS} == FreeBSD && (${OSVERSION} < 1200000 || ${ARCH} == i386)


More information about the svn-ports-head mailing list