summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2007-07-03 16:29:24 +0000
committerjoerg <joerg@NetBSD.org>2007-07-03 16:29:24 +0000
commitdbfc63fcce044dba0af10cba037296d31e4fd22e (patch)
tree707ddc4cdc7adc08c67670e439d0946dd56e8953
parent84c48917b8e996f429748e8ed59f8ec39daec978 (diff)
Rename nbinstall to ${MACHINE_GNU_PLATFORM}-install as it calls the
target strip. Don't pass down strip as it is not needed any longer.
-rw-r--r--share/mk/bsd.own.mk4
-rw-r--r--tools/binstall/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index 42c4b50f72b..472058498ce 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.own.mk,v 1.495 2007/04/08 09:35:51 scw Exp $
+# $NetBSD: bsd.own.mk,v 1.496 2007/07/03 16:29:24 joerg Exp $
.if !defined(_BSD_OWN_MK_)
_BSD_OWN_MK_=1
@@ -199,7 +199,7 @@ HOST_MKDEP= ${TOOLDIR}/bin/${_TOOL_PREFIX}host-mkdep
DBSYM= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-dbsym
ELF2ECOFF= ${TOOLDIR}/bin/${_TOOL_PREFIX}mips-elf2ecoff
-INSTALL= STRIP=${STRIP:Q} ${TOOLDIR}/bin/${_TOOL_PREFIX}install
+INSTALL= ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-install
LEX= ${TOOLDIR}/bin/${_TOOL_PREFIX}lex
LINT= CC=${CC:Q} ${TOOLDIR}/bin/${MACHINE_GNU_PLATFORM}-lint
LORDER= NM=${NM:Q} MKTEMP=${TOOL_MKTEMP:Q} ${TOOLDIR}/bin/${_TOOL_PREFIX}lorder
diff --git a/tools/binstall/Makefile b/tools/binstall/Makefile
index f66413d5711..de056717d47 100644
--- a/tools/binstall/Makefile
+++ b/tools/binstall/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2007/06/28 19:05:55 joerg Exp $
+# $NetBSD: Makefile,v 1.7 2007/07/03 16:29:24 joerg Exp $
-HOSTPROGNAME= ${_TOOL_PREFIX}install
+HOSTPROGNAME= ${MACHINE_GNU_PLATFORM}-install
HOST_SRCDIR= usr.bin/xinstall
CPPFLAGS+= -I${.CURDIR}/../compat/sys
CPPFLAGS+= -DTARGET_STRIP=\"${STRIP}\"