b8a678ef1d
* Remade patch so it works with minix patch tool. * New MINIX tar support -ox, so revert back to it In fetch scripts, tar had been replaced by bsdtar as the prebvious tar did not support the -o flag under minix, which is required to prevent usage of tar file stored user and group information. This introduces portability problems. As our new tar tool now support that flag revert back to improve portability.
23 lines
417 B
Makefile
23 lines
417 B
Makefile
# $NetBSD: Makefile,v 1.22 2011/08/17 14:00:30 christos Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= xinstall
|
|
SRCS= xinstall.c getid.c
|
|
MAN= install.1
|
|
|
|
.PATH: ${NETBSDSRCDIR}/usr.sbin/mtree
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/usr.sbin/mtree
|
|
|
|
.if (${HOSTPROG:U} == "")
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
.endif
|
|
|
|
COPTS.xinstall.c += -Wno-format-nonliteral
|
|
|
|
|
|
PROGNAME=install
|
|
|
|
.include <bsd.prog.mk>
|