diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 21:30:42 +0800 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-11-13 21:30:42 +0800 |
commit | bb34de42c0ccac8e962cab97e064965d23f081de (patch) | |
tree | dd40b82023ab94a6839b4f4d440c3cd5cab978ee /mail/spambnc | |
parent | 533c87fa4d98c0e6100d18f59559906241ed4230 (diff) | |
download | freebsd-ports-gnome-bb34de42c0ccac8e962cab97e064965d23f081de.tar.gz freebsd-ports-gnome-bb34de42c0ccac8e962cab97e064965d23f081de.tar.zst freebsd-ports-gnome-bb34de42c0ccac8e962cab97e064965d23f081de.zip |
Use the FIND and XARGS macros introduced in bsd.port.mk 1.391.
Diffstat (limited to 'mail/spambnc')
-rw-r--r-- | mail/spambnc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/spambnc/Makefile b/mail/spambnc/Makefile index 0791b32f791b..614f5960cacc 100644 --- a/mail/spambnc/Makefile +++ b/mail/spambnc/Makefile @@ -25,7 +25,7 @@ PLIST= ${WRKDIR}/.pkg-plist pre-install: @${RM} -f ${PLIST} - @(cd ${WRKDIR} && find -s . -type f | ${GREP} -v "^\.\/\." | \ + @(cd ${WRKDIR} && ${FIND} -s . -type f | ${GREP} -v "^\.\/\." | \ ${SED} -e 's,.,share/spambnc,1' >> ${PLIST}) @echo "%%PORTDOCS%%share/doc/spambnc/documentation.html" >> ${PLIST} @echo "@dirrm share/spambnc" >> ${PLIST} |