Module Name: src Committed By: martin Date: Wed Nov 13 12:56:22 UTC 2019
Modified Files: src/bin/pax [netbsd-9]: Makefile Log Message: 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 To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.39.50.1 src/bin/pax/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/bin/pax/Makefile diff -u src/bin/pax/Makefile:1.39 src/bin/pax/Makefile:1.39.50.1 --- src/bin/pax/Makefile:1.39 Fri Apr 23 19:41:02 2010 +++ src/bin/pax/Makefile Wed Nov 13 12:56:22 2019 @@ -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