summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Cottlehuber <dch@FreeBSD.org>2020-06-23 09:43:40 +0000
committerDave Cottlehuber <dch@FreeBSD.org>2020-06-23 09:43:40 +0000
commit3f61709c9d1fc08d48a0250a88cabdcc1b22dfcc (patch)
treed12435f209aecba6b9855aa2dc47a1479387d9f6
parentgames/fishsupper: unbreak on powerpc64 head (diff)
databases/couchdb3: use more appropriate regex escapes
See r538197 for further clarification
Notes
Notes: svn path=/head/; revision=539968
-rw-r--r--databases/couchdb3/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/couchdb3/Makefile b/databases/couchdb3/Makefile
index 44ae5800b9cd..d16fa4cd934c 100644
--- a/databases/couchdb3/Makefile
+++ b/databases/couchdb3/Makefile
@@ -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)