diff options
author | joerg <joerg@pkgsrc.org> | 2009-04-03 19:52:38 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-04-03 19:52:38 +0000 |
commit | ee378e80dc2cb71208a50c6733a2e0db42f6d4ca (patch) | |
tree | 9a2f5a09b40a0d227fd3c92d013abef0696e61c7 | |
parent | 457d92f056d80323d6b3a1530b7f75fdfa0c8f17 (diff) | |
download | pkgsrc-ee378e80dc2cb71208a50c6733a2e0db42f6d4ca.tar.gz |
Do not preserve 0777 permissions from the distfile when copying to the
final destination in ${PREFIX}.
-rw-r--r-- | mail/dspam/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/dspam/Makefile b/mail/dspam/Makefile index dfbd5c0c88f..f85dcb6202f 100644 --- a/mail/dspam/Makefile +++ b/mail/dspam/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.60 2009/03/16 18:13:34 adrianp Exp $ +# $NetBSD: Makefile,v 1.61 2009/04/03 19:52:38 joerg Exp $ DISTNAME= dspam-3.8.0 PKGREVISION= 2 @@ -142,14 +142,14 @@ post-install: . if !empty(DSPAM_STORAGE_DRIVER:M${drv}) ${INSTALL_DATA_DIR} ${DATADIR}/${drv} cd ${WRKSRC}/src/tools.${drv}_drv && \ - pax -rwppm ./*.sql ${DATADIR}/${drv} + pax -rwpm ./*.sql ${DATADIR}/${drv} . endif .endfor .if !empty(DSPAM_STORAGE_DRIVER:Msqlite*) ${INSTALL_DATA_DIR} ${DATADIR}/sqlite cd ${WRKSRC}/src/tools.sqlite_drv && \ - pax -rwppm '-s|.*/Makefile.*$$||' . ${DATADIR}/sqlite + pax -rwpm '-s|.*/Makefile.*$$||' . ${DATADIR}/sqlite .endif ${CHMOD} ${SHAREMODE} ${DATADIR}/webui/cgi-bin/*.txt |