diff options
author | dholland <dholland@pkgsrc.org> | 2012-03-25 21:02:19 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-03-25 21:02:19 +0000 |
commit | 33976934c98db32bff73d590f729e4c21b9b35fe (patch) | |
tree | 6ecd273bf5281fbcc2439a5d28d54c6466c78e52 /editors | |
parent | 5d28f192f49e33ffa7daf0e72b0d510d36a79849 (diff) | |
download | pkgsrc-33976934c98db32bff73d590f729e4c21b9b35fe.tar.gz |
Do a post-extract chmod on a couple of directories that are installed
via tar; prevents file-check errors I've been hitting when bulk building.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs-snapshot/Makefile.common | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/emacs-snapshot/Makefile.common b/editors/emacs-snapshot/Makefile.common index ff5768b033b..5b35eba0b8e 100644 --- a/editors/emacs-snapshot/Makefile.common +++ b/editors/emacs-snapshot/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.50 2012/03/21 23:05:02 minskim Exp $ +# $NetBSD: Makefile.common,v 1.51 2012/03/25 21:02:19 dholland Exp $ DISTNAME= emacs-snapshot_20120319.orig PKGNAME= ${DISTNAME:S/snapshot_/${EMACS_VERSION}./:S/.orig//} @@ -77,6 +77,7 @@ post-extract: cp ${.CURDIR}/../../editors/emacs/files/site-init.el ${WRKSRC}/lisp cp ${FILESDIR}/dragonfly.h ${WRKSRC}/src/s ${CHMOD} -R go-w ${WRKSRC} + ${CHMOD} ugo+rx ${WRKSRC}/leim/ja-dic ${WRKSRC}/leim/quail pre-configure: cd ${WRKSRC} && ./autogen.sh |