Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/sets Give up and use TOOL_SED again.



details:   https://anonhg.NetBSD.org/src/rev/354f4c9dfbcd
branches:  trunk
changeset: 815550:354f4c9dfbcd
user:      christos <christos%NetBSD.org@localhost>
date:      Wed May 25 00:14:47 2016 +0000

description:
Give up and use TOOL_SED again.

diffstat:

 distrib/sets/mkvars.mk |  6 +++---
 distrib/sets/sets.subr |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (51 lines):

diff -r 76c60f1352ea -r 354f4c9dfbcd distrib/sets/mkvars.mk
--- a/distrib/sets/mkvars.mk    Wed May 25 00:07:20 2016 +0000
+++ b/distrib/sets/mkvars.mk    Wed May 25 00:14:47 2016 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mkvars.mk,v 1.27 2016/05/24 19:36:41 christos Exp $
+# $NetBSD: mkvars.mk,v 1.28 2016/05/25 00:14:47 christos Exp $
 
 MKEXTRAVARS= \
        MACHINE \
@@ -93,12 +93,12 @@
        @echo $i="${$i}"
 .endfor
 .if ${MKCOMPAT} != "no"
-       @echo COMPATARCHDIRS=${COMPATARCHDIRS} | ${SED} -e's/ /,/g'
+       @echo COMPATARCHDIRS=${COMPATARCHDIRS} | ${TOOL_SED} -e 's/ /,/g'
 .else
        @echo COMPATARCHDIRS=
 .endif
 .if ${MKKMOD} != "no" && ${MKCOMPATMODULES} != "no"
-       @echo KMODARCHDIRS=${KMODARCHDIRS} | ${SED} -e's/ /,/g'
+       @echo KMODARCHDIRS=${KMODARCHDIRS} | ${TOOL_SED} -e 's/ /,/g'
 .else
        @echo KMODARCHDIRS=
 .endif
diff -r 76c60f1352ea -r 354f4c9dfbcd distrib/sets/sets.subr
--- a/distrib/sets/sets.subr    Wed May 25 00:07:20 2016 +0000
+++ b/distrib/sets/sets.subr    Wed May 25 00:14:47 2016 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: sets.subr,v 1.175 2016/05/25 00:07:20 christos Exp $
+#      $NetBSD: sets.subr,v 1.176 2016/05/25 00:14:47 christos Exp $
 #
 
 #
@@ -126,7 +126,7 @@
 
 IFS=$oIFS
 
-MKVARS="$( SED=${SED} ${MAKE} -B -f ${rundir}/mkvars.mk mkvars | ${SED} -e 's,=.*,,' | ${XARGS} )"
+MKVARS="$( ${MAKE} -B -f ${rundir}/mkvars.mk mkvars | ${SED} -e 's,=.*,,' | ${XARGS} )"
 
 #####
 
@@ -179,7 +179,7 @@
 # In each file, a record consists of a path and a System Package name,
 # separated by whitespace. E.g.,
 #
-#      # $NetBSD: sets.subr,v 1.175 2016/05/25 00:07:20 christos Exp $
+#      # $NetBSD: sets.subr,v 1.176 2016/05/25 00:14:47 christos Exp $
 #      .                       base-sys-root   [keyword[,...]]
 #      ./altroot               base-sys-root
 #      ./bin                   base-sys-root



Home | Main Index | Thread Index | Old Index