Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Oct 2013 18:47:29 +0000 (UTC)
From:      "Simon J. Gerraty" <sjg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r256856 - projects/bmake/etc
Message-ID:  <201310211847.r9LIlTwR078600@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sjg
Date: Mon Oct 21 18:47:29 2013
New Revision: 256856
URL: http://svnweb.freebsd.org/changeset/base/256856

Log:
  Fix botched sed script

Modified:
  projects/bmake/etc/Makefile

Modified: projects/bmake/etc/Makefile
==============================================================================
--- projects/bmake/etc/Makefile	Mon Oct 21 18:47:02 2013	(r256855)
+++ projects/bmake/etc/Makefile	Mon Oct 21 18:47:29 2013	(r256856)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310211847.r9LIlTwR078600>