Fix botched sed script

This commit is contained in:
Simon J. Gerraty 2013-10-21 18:47:29 +00:00
parent f0247a242f
commit 1991e07af8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/bmake/; revision=256856

View File

@ -308,10 +308,10 @@ distribution:
MTREE_CMD?= mtree
.if ${MK_INSTALL_AS_USER} != "no" && ${_uid} != 0
MTREE_FILTER= sed -e 's,(uname=)[^ ]* ,\1${BINOWN},' \
-e 's,(gname=)[^ ]* ,\1${BINGRP},' \
-e 's,(uid=)[^ ]* ,\1${_uid},' \
-e 's,(gid=)[^ ]* ,\1${_gid},'
MTREE_FILTER= sed -e 's,\(uname=\)[^ ]* ,\1${BINOWN} ,' \
-e 's,\(gname=\)[^ ]* ,\1${BINGRP} ,' \
-e 's,\(uid=\)[^ ]* ,\1${_uid} ,' \
-e 's,\(gid=\)[^ ]* ,\1${_gid} ,'
.else
MTREE_FILTER= cat
.endif