diff options
author | gabor <gabor@FreeBSD.org> | 2010-07-17 13:54:14 +0800 |
---|---|---|
committer | gabor <gabor@FreeBSD.org> | 2010-07-17 13:54:14 +0800 |
commit | 28912865cf1009eb58b82a9b0cfe30674d8dcaa8 (patch) | |
tree | 94396f72a35db8735091078404b444ca151bb1f8 /textproc | |
parent | f339e4651374a172d293b97e63d8ae70c8aa7087 (diff) | |
download | freebsd-ports-gnome-28912865cf1009eb58b82a9b0cfe30674d8dcaa8.tar.gz freebsd-ports-gnome-28912865cf1009eb58b82a9b0cfe30674d8dcaa8.tar.zst freebsd-ports-gnome-28912865cf1009eb58b82a9b0cfe30674d8dcaa8.zip |
- Fix two grep patterns that were incorrect but accidentally worked in this
particular case
- No PORTREVISION bump, existing installations are consistent
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/docbook-500/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/docbook-500/Makefile b/textproc/docbook-500/Makefile index 703db3982c3c..12da7526996d 100644 --- a/textproc/docbook-500/Makefile +++ b/textproc/docbook-500/Makefile @@ -98,7 +98,7 @@ do-install: .endif .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} - files1=$$(${FIND} ${WRKSRC} -type f -depth 1| ${GREP} -v -e "$.xml" -e "$.nvdl"); \ + files1=$$(${FIND} ${WRKSRC} -type f -depth 1| ${GREP} -v -e '.xml$$' -e '.nvdl$$'); \ files2=$$(${FIND} ${WRKSRC}/docs -type f -depth 1); \ for i in $${files1} $${files2}; do \ ${INSTALL_DATA} $${i} ${DOCSDIR}; \ |