diff options
author | 1998-04-25 06:56:25 +0000 | |
---|---|---|
committer | 1998-04-25 06:56:25 +0000 | |
commit | 6f311859e89361ed148377619c1a671a4594e919 (patch) | |
tree | 49eceedcb9acf4e46509fe5233c23f98baac5f03 | |
parent | type errors (diff) | |
download | wireguard-openbsd-6f311859e89361ed148377619c1a671a4594e919.tar.xz wireguard-openbsd-6f311859e89361ed148377619c1a671a4594e919.zip |
Remove dependency error in install target
-rw-r--r-- | gnu/usr.bin/perl/Makefile.bsd-wrapper | 10 |
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 |