diff options
author | sbd <sbd@pkgsrc.org> | 2013-01-05 07:32:49 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2013-01-05 07:32:49 +0000 |
commit | 2053f94f4f43f20de11d2cb3ea2a441422dd39a1 (patch) | |
tree | eb290413150abf0fdaa43aa6239f7251de0d7a0f /mk/install | |
parent | 020a3fc3fb21559f0b2fa148f87f8a722000cecf (diff) | |
download | pkgsrc-2053f94f4f43f20de11d2cb3ea2a441422dd39a1.tar.gz |
Modify mk/plist/plist-gnu.mk to convert gnu/man to ${PKGGNUDIR}${PKGMANDIR}.
Also modify mk/install/install.mk to make the conversion when using
AUTO_MKDIRS.
Diffstat (limited to 'mk/install')
-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 1894657dc5a..c2899650c93 100644 --- a/mk/install/install.mk +++ b/mk/install/install.mk @@ -1,4 +1,4 @@ -# $NetBSD: install.mk,v 1.65 2012/12/06 11:36:31 jperkin Exp $ +# $NetBSD: install.mk,v 1.66 2013/01/05 07:32:49 sbd Exp $ # # This file provides the code for the "install" phase. # @@ -293,6 +293,7 @@ install-dirs-from-PLIST: ${CAT} ${PLIST_SRC} \ | sed -n \ -e 's,\\,\\\\,' \ + -e 's,^gnu/man/,${PKGGNUDIR}${PKGMANDIR}/,' \ -e 's,^gnu/,${PKGGNUDIR},' \ -e 's,^man/,${PKGMANDIR}/,' \ -e 's,^info/,${PKGINFODIR}/,' \ |