diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-20 18:39:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-20 18:39:23 +0000 |
commit | 8c955757a6c1101a62d4f09367c98688cd35f75a (patch) | |
tree | ba6849ed8e46b7972597bdaf2ca844f1c48a135e /gnu/usr.bin | |
parent | 00c1ae9c3963b23f1fe010fee051ffb1be1eb7ae (diff) |
use an ${INSTALL_MAN} variable to allow cvs to still be compiled on other machines
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.bsd-wrapper | 5 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.in | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index 69e3f8acb76..6029fb2c91b 100644 --- a/gnu/usr.bin/cvs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/cvs/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $Id: Makefile.bsd-wrapper,v 1.4 1995/12/19 21:25:28 deraadt Exp $ +# $Id: Makefile.bsd-wrapper,v 1.5 1995/12/20 18:39:20 deraadt Exp $ MAN= man/cvs.1 man/cvs.5 man/cvsbug.8 man/cvsinit.8 man/mkmodules.1 @@ -14,7 +14,8 @@ config.status: sh ${.CURDIR}/configure --prefix=/usr install: maninstall - ${MAKE} prefix=${DESTDIR}/usr infodir=${DESTDIR}/usr/share/info install + ${MAKE} prefix=${DESTDIR}/usr infodir=${DESTDIR}/usr/share/info \ + INSTALL_MAN= install clean cleandir: -@if [ -e Makefile ]; then ${MAKE} realclean; fi diff --git a/gnu/usr.bin/cvs/Makefile.in b/gnu/usr.bin/cvs/Makefile.in index e332f28782a..6509798bd78 100644 --- a/gnu/usr.bin/cvs/Makefile.in +++ b/gnu/usr.bin/cvs/Makefile.in @@ -100,8 +100,8 @@ DISTFILES = \ PROGS = cvsinit # Subdirectories to run make in for the primary targets. -#SUBDIRS = lib src man doc contrib examples windows-NT -SUBDIRS = lib src doc contrib examples windows-NT +INSTALL_MAN=man +SUBDIRS = lib src ${INSTALL_MAN} doc contrib examples windows-NT # Only make TAGS/tags files in these directories, in this order TSUBDIRS= src lib |