diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-08-28 14:16:34 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-08-28 14:16:34 +0000 |
commit | 578295246439872539295da661198f38efcb47d5 (patch) | |
tree | e9c4827115101fcbd1af96d9f1b5e4b38ab295d6 /devel/p5-PV/Makefile | |
parent | 6f92407e3ef7de3a51e1becf715946fc4084b07d (diff) | |
download | ports-578295246439872539295da661198f38efcb47d5.tar.gz ports-578295246439872539295da661198f38efcb47d5.zip |
Fix this to new perl5 scheme. (I missed it in my first pass because
I didn't realize it's doing all the installation in its own do-install
target.)
PR: 7762
Submitted by: kdulzo@caffeine.internal.enteract.com
Notes
Notes:
svn path=/head/; revision=12893
Diffstat (limited to 'devel/p5-PV/Makefile')
-rw-r--r-- | devel/p5-PV/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/p5-PV/Makefile b/devel/p5-PV/Makefile index 881aa4d610e4..31f39cc0601c 100644 --- a/devel/p5-PV/Makefile +++ b/devel/p5-PV/Makefile @@ -3,7 +3,7 @@ # Date created: April 18th 1997 # Whom: James FitzGibbon <jfitz@FreeBSD.org> # -# $Id: Makefile,v 1.4 1997/06/24 18:43:28 jfitz Exp $ +# $Id: Makefile,v 1.5 1998/08/12 09:57:54 asami Exp $ # DISTNAME= perlvision @@ -23,8 +23,8 @@ NO_WRKSUBDIR= YES NO_BUILD= YES do-install: - ${MKDIR} -p -m 755 ${PREFIX}/lib/perl5/site_perl - ${INSTALL_DATA} ${WRKDIR}/PV.pm ${PREFIX}/lib/perl5/site_perl - ${INSTALL_DATA} ${WRKDIR}/PerlVision.doc ${PREFIX}/lib/perl5/site_perl + ${MKDIR} -m 755 ${PREFIX}/lib/perl5/site_perl/${PERL_VER} + ${INSTALL_DATA} ${WRKDIR}/PV.pm ${PREFIX}/lib/perl5/site_perl/${PERL_VER} + ${INSTALL_DATA} ${WRKDIR}/PerlVision.doc ${PREFIX}/lib/perl5/site_perl/${PERL_VER} .include <bsd.port.mk> |