diff options
author | heinz <heinz> | 2008-01-03 23:18:07 +0000 |
---|---|---|
committer | heinz <heinz> | 2008-01-03 23:18:07 +0000 |
commit | b518a3fafda5b35ae8d8cb847d5ec4786f8910c6 (patch) | |
tree | 170b0519d8968570a623ea56286e87d7e7634aec /shells/bash2/Makefile | |
parent | 2d46c3e557e38efeeca844eb5be573a813dcc65f (diff) | |
download | pkgsrc-b518a3fafda5b35ae8d8cb847d5ec4786f8910c6.tar.gz |
Added support for installation to DESTDIR.
Diffstat (limited to 'shells/bash2/Makefile')
-rw-r--r-- | shells/bash2/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/shells/bash2/Makefile b/shells/bash2/Makefile index 12222b36728..3079e94f8ef 100644 --- a/shells/bash2/Makefile +++ b/shells/bash2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.75 2007/01/18 09:42:14 rillig Exp $ +# $NetBSD: Makefile,v 1.76 2008/01/03 23:18:39 heinz Exp $ # DISTNAME= bash-2.05b @@ -18,6 +18,7 @@ COMMENT= The GNU Bourne Again Shell CONFLICTS= static-bash-[0-9]* +PKG_DESTDIR_SUPPORT= user-destdir PKG_INSTALLATION_TYPES= overwrite pkgviews USE_GNU_READLINE= yes @@ -62,7 +63,7 @@ BUILDLINK_API_DEPENDS.readline+= readline>=4.3 .include "../../devel/readline/buildlink3.mk" post-install: - ${INSTALL_MAN} ${WRKSRC}/doc/bash.1 ${PREFIX}/${PKGMANDIR}/man1 - ${INSTALL_MAN} ${WRKSRC}/doc/bashbug.1 ${PREFIX}/${PKGMANDIR}/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/bash.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/bashbug.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 .include "../../mk/bsd.pkg.mk" |