diff options
| author | martin <martin@NetBSD.org> | 2019-11-13 12:56:22 +0000 |
|---|---|---|
| committer | martin <martin@NetBSD.org> | 2019-11-13 12:56:22 +0000 |
| commit | 86152d058e1d4595842d301f9aabccece90c937e (patch) | |
| tree | aa6405fb3b265ea095370290aaf2ec824ebeda5c /bin | |
| parent | 51e9ec4e9721ca38d79df4810fc02d64864a748c (diff) | |
Pull up following revision(s) (requested by nakayama in ticket #421):
bin/pax/Makefile: revision 1.40
Install manual pages for tar and cpio only if ${MKBSDTAR} == "no"
PR bin/54468
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/pax/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/pax/Makefile b/bin/pax/Makefile index 8666b1e0d39..c9136bb6be3 100644 --- a/bin/pax/Makefile +++ b/bin/pax/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2010/04/23 19:41:02 joerg Exp $ +# $NetBSD: Makefile,v 1.39.50.1 2019/11/13 12:56:22 martin Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 .include <bsd.own.mk> @@ -23,7 +23,7 @@ LDADD+= -lutil .endif .endif -MAN= pax.1 tar.1 cpio.1 +MAN= pax.1 .if defined(HOSTPROG) CPPFLAGS+= -DHOSTPROG @@ -35,9 +35,11 @@ CPPFLAGS+= -DHAVE_SYS_MTIO_H .if ${MKBSDTAR} == "no" LINKS+= ${BINDIR}/pax ${BINDIR}/tar SYMLINKS+=${BINDIR}/tar /usr/bin/tar +MAN+=tar.1 LINKS+= ${BINDIR}/pax ${BINDIR}/cpio SYMLINKS+=${BINDIR}/cpio /usr/bin/cpio +MAN+=cpio.1 .endif .endif # } ! HOSTPROG |
