diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-23 22:21:51 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-23 22:21:51 +0000 |
commit | aef9d9be3b21500c918bb33460e1a145c75e280d (patch) | |
tree | 28a63c098fdc6470009b34b9efdc2160c7fc81fd /gnu/usr.bin/perl | |
parent | dfeead84e5b3e2b349a06703fdb4ba9cafb2ab94 (diff) |
respect NOMAN during install
Diffstat (limited to 'gnu/usr.bin/perl')
-rw-r--r-- | gnu/usr.bin/perl/Makefile.bsd-wrapper | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/Makefile.bsd-wrapper b/gnu/usr.bin/perl/Makefile.bsd-wrapper index 0f13dff997f..2ca773a4766 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.9 1997/06/23 22:20:28 kstailey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.10 1997/06/23 22:21:50 kstailey Exp $ # # Build wrapper for Perl 5.003. # @@ -21,7 +21,11 @@ MAN= x2p/a2p.man x2p/s2p.man pod/perl.man pod/perlbook.man \ pod/perltie.man pod/perltoc.man pod/perltrap.man \ pod/perlvar.man pod/perlxs.man pod/perlxstut.man +.ifndef NOMAN MANALL= ${MAN:S/.man$/.cat1/g} +.else +MANALL= +.endif MANLOCALBUILD= yes |