diff options
author | obache <obache> | 2008-06-11 07:30:33 +0000 |
---|---|---|
committer | obache <obache> | 2008-06-11 07:30:33 +0000 |
commit | ad93d3e13910db89a9d3941b29ff7ccd3b28c85f (patch) | |
tree | 4ae974ace90bd5af159314b976b63923300ccd93 | |
parent | 9b06ad24fab8122a49c5cc0ecc1c6b651c2b6917 (diff) | |
download | pkgsrc-ad93d3e13910db89a9d3941b29ff7ccd3b28c85f.tar.gz |
Honor PKGLOCALEDIR for AUTO_MKDIRS.
-rw-r--r-- | mk/install/install.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/install/install.mk b/mk/install/install.mk index 1491962797f..4cd3db79496 100644 --- a/mk/install/install.mk +++ b/mk/install/install.mk @@ -1,4 +1,4 @@ -# $NetBSD: install.mk,v 1.50 2007/12/10 22:49:19 rillig Exp $ +# $NetBSD: install.mk,v 1.51 2008/06/11 07:30:33 obache Exp $ # # This file provides the code for the "install" phase. # @@ -273,6 +273,7 @@ install-dirs-from-PLIST: -e 's,\\,\\\\,' \ -e 's,^man/,${PKGMANDIR}/,' \ -e 's,^info/,${PKGINFODIR}/,' \ + -e 's,^share/locale/,${PKGLOCALEDIR}/locale/,' \ -e 's,^\([^$$@]*\)/[^/]*$$,\1,p' \ | while read dir; do \ ${_INSTALL_ONE_DIR_CMD}; \ |