diff options
author | uebayasi <uebayasi> | 2004-02-05 08:45:31 +0000 |
---|---|---|
committer | uebayasi <uebayasi> | 2004-02-05 08:45:31 +0000 |
commit | 37a65ff3fa4d309a115b29b78dd63d933fa78c63 (patch) | |
tree | fb7992da4988ee091e6f81f813ebc67478826093 /lang | |
parent | cbdb06e06a581224c8b5c1f31c4dda5b8433b399 (diff) | |
download | pkgsrc-37a65ff3fa4d309a115b29b78dd63d933fa78c63.tar.gz |
Make sure ${PREFIX}/bin exists before the perl executable is put there.
At least, I needed this for pkgviews installation.
Ok'ed by jlam.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/perl58/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/perl58/Makefile b/lang/perl58/Makefile index f6f6b5245ad..20b0c9d3a97 100644 --- a/lang/perl58/Makefile +++ b/lang/perl58/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2004/01/25 03:26:49 grant Exp $ +# $NetBSD: Makefile,v 1.33 2004/02/05 08:45:31 uebayasi Exp $ # The following two variables should have empty values unless we're # building a perl snapshot or release candidate. @@ -254,6 +254,7 @@ post-build: post-install: ${RM} -f ${PREFIX}/bin/perl ${PREFIX}/bin/perl${PERL5_VERS} + ${INSTALL_PROGRAM_DIR} ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC_PERL5} ${PREFIX}/bin/perl${PERL5_VERS} ${LN} -f ${PREFIX}/bin/perl${PERL5_VERS} ${PREFIX}/bin/perl .if !empty(_STRIPFLAG_INSTALL) |