diff options
author | Dave Cottlehuber <dch@FreeBSD.org> | 2020-06-23 09:43:40 +0000 |
---|---|---|
committer | Dave Cottlehuber <dch@FreeBSD.org> | 2020-06-23 09:43:40 +0000 |
commit | 3f61709c9d1fc08d48a0250a88cabdcc1b22dfcc (patch) | |
tree | d12435f209aecba6b9855aa2dc47a1479387d9f6 | |
parent | games/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/Makefile | 4 |
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) |