Sun Oct 5 20:20:55 2008 UTC ()
Remove the definition of HOST_SED.  HOST_SED was previously used only in
tools/atf-compile, which has now been adjusted to use TOOL_SED.


(apb)
diff -r1.168 -r1.169 src/share/mk/bsd.sys.mk

cvs diff -r1.168 -r1.169 src/share/mk/bsd.sys.mk (expand / switch to unified diff)

--- src/share/mk/bsd.sys.mk 2008/09/26 18:23:09 1.168
+++ src/share/mk/bsd.sys.mk 2008/10/05 20:20:55 1.169
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: bsd.sys.mk,v 1.168 2008/09/26 18:23:09 apb Exp $ 1# $NetBSD: bsd.sys.mk,v 1.169 2008/10/05 20:20:55 apb Exp $
2# 2#
3# Build definitions used for NetBSD source tree builds. 3# Build definitions used for NetBSD source tree builds.
4 4
5.if !defined(_BSD_SYS_MK_) 5.if !defined(_BSD_SYS_MK_)
6_BSD_SYS_MK_=1 6_BSD_SYS_MK_=1
7 7
8.if defined(WARNS) 8.if defined(WARNS)
9.if ${WARNS} > 0 9.if ${WARNS} > 0
10CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith 10CFLAGS+= -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith
11#CFLAGS+= -Wmissing-declarations -Wredundant-decls -Wnested-externs 11#CFLAGS+= -Wmissing-declarations -Wredundant-decls -Wnested-externs
12# Add -Wno-sign-compare. -Wsign-compare is included in -Wall as of GCC 3.3, 12# Add -Wno-sign-compare. -Wsign-compare is included in -Wall as of GCC 3.3,
13# but our sources aren't up for it yet. Also, add -Wno-traditional because 13# but our sources aren't up for it yet. Also, add -Wno-traditional because
14# gcc includes #elif in the warnings, which is 'this code will not compile 14# gcc includes #elif in the warnings, which is 'this code will not compile
@@ -110,28 +110,26 @@ HOST_CXX?= c++ @@ -110,28 +110,26 @@ HOST_CXX?= c++
110HOST_CXXFLAGS?= -O 110HOST_CXXFLAGS?= -O
111 111
112HOST_CPP?= cpp 112HOST_CPP?= cpp
113HOST_CPPFLAGS?= 113HOST_CPPFLAGS?=
114 114
115HOST_LD?= ld 115HOST_LD?= ld
116HOST_LDFLAGS?= 116HOST_LDFLAGS?=
117 117
118HOST_AR?= ar 118HOST_AR?= ar
119HOST_RANLIB?= ranlib 119HOST_RANLIB?= ranlib
120 120
121HOST_LN?= ln 121HOST_LN?= ln
122 122
123HOST_SED?= sed 
124 
125.if !empty(HOST_CYGWIN) 123.if !empty(HOST_CYGWIN)
126HOST_SH?= /usr/bin/bash 124HOST_SH?= /usr/bin/bash
127.else 125.else
128HOST_SH?= sh 126HOST_SH?= sh
129.endif 127.endif
130 128
131ELF2ECOFF?= elf2ecoff 129ELF2ECOFF?= elf2ecoff
132MKDEP?= mkdep 130MKDEP?= mkdep
133OBJCOPY?= objcopy 131OBJCOPY?= objcopy
134OBJDUMP?= objdump 132OBJDUMP?= objdump
135PAXCTL?= paxctl 133PAXCTL?= paxctl
136STRIP?= strip 134STRIP?= strip
137 135