Teach set_ftime about symbolic links, because it has to know: on some Linux systems, when we build as a tool we think we have lutimes but it doesn't work on some filesystems at runtime. A bit ugly but effective and without use of AC_TRY_RUN in the tool build. Tidier (than mine) set_ftime reorganization from christos. Bump version to 20080110.
17 lines
395 B
Makefile
17 lines
395 B
Makefile
# $NetBSD: Makefile,v 1.34 2008/02/07 22:27:53 joerg Exp $
|
|
|
|
USE_FEATURES= nbcompat
|
|
|
|
.include "Makefile.common"
|
|
|
|
CATEGORIES= archivers
|
|
|
|
# pax installs "tar" and "cpio"
|
|
.if defined(GNU_PROGRAM_PREFIX) && ${GNU_PROGRAM_PREFIX} == ""
|
|
CONFLICTS+= gcpio-[0-9]*
|
|
.endif
|
|
.if defined(GTAR_PROGRAM_PREFIX) && ${GTAR_PROGRAM_PREFIX} == ""
|
|
CONFLICTS+= gtar-base-[0-9]*
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|