diff options
author | jlam <jlam@pkgsrc.org> | 2001-09-12 06:06:32 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-09-12 06:06:32 +0000 |
commit | bf541c837309c4635e8ed2ce67a7bc5af02f6a9d (patch) | |
tree | 4529c031cdb568aa8284f54b578c309bd968cc1c /devel | |
parent | 6437cf7722c3dd0921ee2821554a92cd525d1218 (diff) | |
download | pkgsrc-bf541c837309c4635e8ed2ce67a7bc5af02f6a9d.tar.gz |
${PERL5_SITE*} are no longer automatically created as part of the perl
package. This shouldn't affect perl modules as they create all directories
before installing, but we need to manually create ${PERL5_SITEARCH} before
copying our headers.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-perl-headers/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/p5-perl-headers/Makefile b/devel/p5-perl-headers/Makefile index b2bc0e0f3f2..a21bbb5a738 100644 --- a/devel/p5-perl-headers/Makefile +++ b/devel/p5-perl-headers/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/09/09 20:36:20 agc Exp $ +# $NetBSD: Makefile,v 1.8 2001/09/12 06:06:32 jlam Exp $ DISTNAME= p5-perl-headers PKGNAME= ${DISTNAME}-${OS_VERSION} @@ -39,6 +39,7 @@ do-build: > ${WRKSRC}/packlist do-install: + ${INSTALL_DATA_DIR} ${PERL5_SITEARCH} ${CP} -R ${WRKSRC}/h2ph/* ${PERL5_SITEARCH} ${INSTALL_DATA} ${WRKSRC}/packlist ${PERL5_PACKLIST} ${CAT} ${PERL5_PACKLIST} | ${XARGS} ${CHMOD} a-w |