summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1998-04-25 06:56:26 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1998-04-25 06:56:26 +0000
commit5054860b746b8e8d9be2e560748502c4f6579da1 (patch)
tree5d53e53b39dc6129a94128852a2253325e62a04e /gnu/usr.bin/perl
parentd5d5c5d43f3812cd4e9880a5a2a56b254f362eb4 (diff)
Remove dependency error in install target
Diffstat (limited to 'gnu/usr.bin/perl')
-rw-r--r--gnu/usr.bin/perl/Makefile.bsd-wrapper10
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/usr.bin/perl/Makefile.bsd-wrapper b/gnu/usr.bin/perl/Makefile.bsd-wrapper
index 056567053ec..c68eebb2a3c 100644
--- a/gnu/usr.bin/perl/Makefile.bsd-wrapper
+++ b/gnu/usr.bin/perl/Makefile.bsd-wrapper
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.bsd-wrapper,v 1.15 1997/11/30 20:17:41 millert Exp $
+# $OpenBSD: Makefile.bsd-wrapper,v 1.16 1998/04/25 06:56:25 niklas Exp $
#
# Build wrapper for Perl 5.003.
#
@@ -192,13 +192,15 @@ maninstall:
@echo NOMAN is set
.endif
-install: ${MANALL} maninstall
- (cd ${.OBJDIR}; INSTALL=${INSTALL} INSTALL_COPY=${INSTALL_COPY} \
- INSTALL_STRIP=${INSTALL_STRIP} ${MAKE} install.perl)
+install: install.perl ${MANALL} maninstall
(cd ${DESTDIR}/usr/include; ${H2PH} *.h arpa/*.h machine/*.h net/*.h \
protocols/*.h sys/*.h)
-chmod -R a+rX ${DESTDIR}/usr/lib/perl5
+install.perl:
+ (cd ${.OBJDIR}; INSTALL=${INSTALL} INSTALL_COPY=${INSTALL_COPY} \
+ INSTALL_STRIP=${INSTALL_STRIP} ${MAKE} install.perl)
+
test:
-@if [ -e Makefile ]; then ${MAKE} test; fi