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.
13 lines
238 B
Makefile
13 lines
238 B
Makefile
# $NetBSD: Makefile,v 1.2 2012/05/31 20:10:06 joerg Exp $
|
|
|
|
PROG= tic
|
|
WARNS= 4
|
|
|
|
CPPFLAGS+= -I${.CURDIR}/../../lib/libterminfo
|
|
|
|
.ifndef HOSTPROG
|
|
LDADD+= -lterminfo -lutil
|
|
DPADD+= ${LIBTERMINFO} ${LIBUTIL}
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|