Source-Changes-HG archive

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

[src/trunk]: src/distrib/sets Add g to sed commands so it can deal with more ...



details:   https://anonhg.NetBSD.org/src/rev/743c9f6042ee
branches:  trunk
changeset: 809386:743c9f6042ee
user:      matt <matt%NetBSD.org@localhost>
date:      Wed Jul 08 01:06:01 2015 +0000

description:
Add g to sed commands so it can deal with more than 2 archdirs.

diffstat:

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

diffs (24 lines):

diff -r 27742edbeb02 -r 743c9f6042ee distrib/sets/mkvars.mk
--- a/distrib/sets/mkvars.mk    Tue Jul 07 22:53:25 2015 +0000
+++ b/distrib/sets/mkvars.mk    Wed Jul 08 01:06:01 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: mkvars.mk,v 1.22 2015/06/22 19:04:21 matt Exp $
+# $NetBSD: mkvars.mk,v 1.23 2015/07/08 01:06:01 matt Exp $
 
 MKEXTRAVARS= \
        MACHINE \
@@ -95,12 +95,12 @@
        @echo $i="${$i}"
 .endfor
 .if ${MKCOMPAT} != "no"
-       @echo COMPATARCHDIRS=${COMPATARCHDIRS} | ${TOOL_SED} -e's/ /,/'
+       @echo COMPATARCHDIRS=${COMPATARCHDIRS} | ${TOOL_SED} -e's/ /,/g'
 .else
        @echo COMPATARCHDIRS=
 .endif
 .if ${MKKMOD} != "no" && ${MKCOMPATMODULES} != "no"
-       @echo KMODARCHDIRS=${KMODARCHDIRS} | ${TOOL_SED} -e's/ /,/'
+       @echo KMODARCHDIRS=${KMODARCHDIRS} | ${TOOL_SED} -e's/ /,/g'
 .else
        @echo KMODARCHDIRS=
 .endif



Home | Main Index | Thread Index | Old Index