From 357bd260c384a4a7e0da0a1075d203b7900804ec Mon Sep 17 00:00:00 2001 From: jmmv Date: Fri, 4 Jun 2010 08:34:35 +0000 Subject: [PATCH] Bye bye atf-compile, you won't be missed. --- tools/Makefile | 4 ++-- tools/atf-compile/Makefile | 31 ------------------------------- 2 files changed, 2 insertions(+), 33 deletions(-) delete mode 100644 tools/atf-compile/Makefile diff --git a/tools/Makefile b/tools/Makefile index 6259d95e50e2..90dfcbd08b44 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.137 2010/03/02 20:47:01 darran Exp $ +# $NetBSD: Makefile,v 1.138 2010/06/04 08:34:35 jmmv Exp $ .include @@ -54,7 +54,7 @@ SUBDIR= host-mkdep .WAIT compat .WAIT \ .WAIT pax \ .WAIT ${TOOLCHAIN_BITS} \ ${DTRACE_BITS} \ - asn1_compile atf-compile cat cksum compile_et config db \ + asn1_compile cat cksum compile_et config db \ file lint1 \ makefs menuc mkcsmapper mkesdb mklocale mknod msgc \ .WAIT disklabel \ diff --git a/tools/atf-compile/Makefile b/tools/atf-compile/Makefile deleted file mode 100644 index a29a782fc6ad..000000000000 --- a/tools/atf-compile/Makefile +++ /dev/null @@ -1,31 +0,0 @@ -# $NetBSD: Makefile,v 1.7 2010/05/08 08:20:18 jmmv Exp $ - -CLEANFILES+= atf-host-compile -CLEANFILES+= atf-host-compile.tmp - -.include - -realall: atf-host-compile -atf-host-compile: atf-host-compile.sh - @echo "create atf-host-compile"; \ - if [ x${HOST_SH:C,^/.*,/,} != x/ ]; then \ - echo "HOST_SH must be an absolute path"; \ - false; \ - fi && \ - ${TOOL_SED} -e s,__ATF_PKGDATADIR__,${SRCDIR}/atf-sh,g \ - -e s,__ATF_SHELL__,${HOST_SH},g \ - <${SRCDIR}/atf-compile/atf-host-compile.sh \ - >atf-host-compile.tmp && \ - chmod +x atf-host-compile.tmp && \ - mv atf-host-compile.tmp atf-host-compile - -# Install rule. -realinstall: install.host -install.host: ${TOOLDIR}/bin/${_TOOL_PREFIX}atf-compile -${TOOLDIR}/bin/${_TOOL_PREFIX}atf-compile:: atf-host-compile - ${_MKTARGET_INSTALL} - mkdir -p ${TOOLDIR}/bin - ${HOST_INSTALL_FILE} -m ${BINMODE} atf-host-compile ${.TARGET} - -SRCDIR= ${NETBSDSRCDIR}/external/bsd/atf/dist -.PATH: ${SRCDIR}/atf-compile