diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-22 12:18:43 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2004-01-22 12:18:43 +0000 |
commit | 439b8a040c6cc5d9c091b08a90056d1059d4640b (patch) | |
tree | 8132e1111bd2c96ba9c0959d3cfce2b62a26551b /mail/openwebmail/Makefile | |
parent | f26c8efaac7d5c7934a01e89d790bac25766df39 (diff) | |
download | ports-439b8a040c6cc5d9c091b08a90056d1059d4640b.tar.gz ports-439b8a040c6cc5d9c091b08a90056d1059d4640b.zip |
Use the CPIO macro defined in bsd.port.mk.
Notes
Notes:
svn path=/head/; revision=98793
Diffstat (limited to 'mail/openwebmail/Makefile')
-rw-r--r-- | mail/openwebmail/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/openwebmail/Makefile b/mail/openwebmail/Makefile index 8f5e6ae6a665..a91b825d8086 100644 --- a/mail/openwebmail/Makefile +++ b/mail/openwebmail/Makefile @@ -143,8 +143,10 @@ pre-install: do-install: @${MKDIR} ${OWCGIDIR} ${OWDATADIR} - @cd ${WRKSRC}/cgi-bin/openwebmail && ${FIND} . | cpio -dpum -R ${BINOWN}:mail ${OWCGIDIR} - @cd ${WRKSRC}/data/openwebmail && ${FIND} . | cpio -dpum -R ${SHAREOWN}:${SHAREGRP} ${OWDATADIR} + @cd ${WRKSRC}/cgi-bin/openwebmail && ${FIND} . \ + | ${CPIO} -dpum -R ${BINOWN}:mail ${OWCGIDIR} + @cd ${WRKSRC}/data/openwebmail && ${FIND} . \ + | ${CPIO} -dpum -R ${SHAREOWN}:${SHAREGRP} ${OWDATADIR} .if !exists(${OWCGIDIR}/etc/openwebmail.conf) @${CP} ${OWCGIDIR}/etc/openwebmail.conf-dist ${OWCGIDIR}/etc/openwebmail.conf .endif |