diff options
author | bsiegert <bsiegert@pkgsrc.org> | 2013-10-18 11:41:17 +0000 |
---|---|---|
committer | bsiegert <bsiegert@pkgsrc.org> | 2013-10-18 11:41:17 +0000 |
commit | cabd12b4779f4db58643cc77218e84b989a451f2 (patch) | |
tree | 083a32de7285989cb2f223c037c007d9001e8881 /mail | |
parent | 4b99982c8e50c7ca9e6d3e8fd11e83b3e8cf3601 (diff) | |
download | pkgsrc-cabd12b4779f4db58643cc77218e84b989a451f2.tar.gz |
Fix a common mistake in many different packages: POSIX says that when using
pax -rw, the destination directory must exist. pax in NetBSD creates it if
not, pax in MirBSD complains. I read through all pkgsrc Makefiles that use
pax and added an entry to INSTALLATION_DIRS, or an INSTALL_DATA_DIR
invocation.
I did not test all the changes but they should be fairly safe. If you notice
any breakage because of this change, please contact me.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/thunderbird/Makefile | 3 | ||||
-rw-r--r-- | mail/thunderbird10/Makefile | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index d24914d8a8f..10ae93de830 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.123 2013/10/10 14:42:21 ryoon Exp $ +# $NetBSD: Makefile,v 1.124 2013/10/18 11:41:18 bsiegert Exp $ # DISTNAME= # empty @@ -65,6 +65,7 @@ post-build: < ${FILESDIR}/desktop.in \ > ${WRKDIR}/desktop +INSTALLATION_DIRS+= lib/${MOZILLA}/extensions INSTALLATION_DIRS+= share/applications share/pixmaps post-install: ${INSTALL_DATA} ${WRKDIR}/desktop \ diff --git a/mail/thunderbird10/Makefile b/mail/thunderbird10/Makefile index fadb4b02c40..1e4dc30e020 100644 --- a/mail/thunderbird10/Makefile +++ b/mail/thunderbird10/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2013/10/10 14:42:21 ryoon Exp $ +# $NetBSD: Makefile,v 1.31 2013/10/18 11:41:18 bsiegert Exp $ # DISTNAME= thunderbird-${TB_VER}esr.source @@ -59,6 +59,7 @@ post-build: < ${FILESDIR}/desktop.in \ > ${WRKDIR}/desktop +INSTALLATION_DIRS+= lib/${MOZILLA}/extensions INSTALLATION_DIRS+= share/applications share/pixmaps post-install: ${INSTALL_DATA} ${WRKDIR}/desktop \ |