diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-21 14:11:17 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-21 14:11:17 +0000 |
commit | facd01054b0387f2f88380500716635b1b5d2455 (patch) | |
tree | 49f60a6f30feb26af04531eb66ada099ca8b22d0 /gnu/usr.bin/rcs | |
parent | a66b5f198e4ba99435cdabdbb828463add744280 (diff) |
If NOMAN is set just touch rcsfile.5 instead of trying to pic it.
Hack to work around alpha problems.
Diffstat (limited to 'gnu/usr.bin/rcs')
-rw-r--r-- | gnu/usr.bin/rcs/Makefile.bsd-wrapper | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/usr.bin/rcs/Makefile.bsd-wrapper b/gnu/usr.bin/rcs/Makefile.bsd-wrapper index e9c26bacc7a..2381ac887cf 100644 --- a/gnu/usr.bin/rcs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/rcs/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.15 1999/06/07 00:45:37 deraadt Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.16 2000/11/21 14:11:16 millert Exp $ MAN= man/ci.1 man/co.1 man/ident.1 man/merge.1 man/rcs.1 man/rcsclean.1 \ man/rcsdiff.1 man/rcsfile.5 man/rcsfreeze.1 man/rcsintro.1 \ @@ -35,12 +35,14 @@ config.status: INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ sh ${.CURDIR}/configure --with-diffutils --prefix=/usr ${CF} -rcsfile.5: - (cd man ; ${MAKE} ${GNUCFLAGS} rcsfile.5) - .ifdef NOMAN +rcsfile.5: + touch man/rcsfile.5 maninstall: @echo NOMAN is set +.else +rcsfile.5: + (cd man ; ${MAKE} ${GNUCFLAGS} rcsfile.5) .endif install: maninstall |