From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QSeyM-0000Yu-Id for garchives@archives.gentoo.org; Sat, 04 Jun 2011 00:44:14 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5372E1C05D; Sat, 4 Jun 2011 00:43:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 1A7B11C05D for ; Sat, 4 Jun 2011 00:43:42 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 929821BC011 for ; Sat, 4 Jun 2011 00:43:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 063F980506 for ; Sat, 4 Jun 2011 00:43:41 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <7ca74d7636b2fcd0c307ec2b972230f25457c786.vapier@gentoo> Subject: [gentoo-commits] proj/openrc:master commit in: sh/ X-VCS-Repository: proj/openrc X-VCS-Files: sh/functions.sh.in X-VCS-Directories: sh/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 7ca74d7636b2fcd0c307ec2b972230f25457c786 Date: Sat, 4 Jun 2011 00:43:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 809063b100fce875fc62297103b507ab commit: 7ca74d7636b2fcd0c307ec2b972230f25457c786 Author: Mike Frysinger gentoo org> AuthorDate: Sat Jun 4 00:41:43 2011 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Jun 4 00:41:43 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3D7ca74d76 fix underquoting of wrapped color stubs of exit status X-Gentoo-Bug: 369911 X-Gentoo-Bug-URL: http://bugs.gentoo.org/369911 Reported-by: Steve Dibb gentoo.org> Reported-by: Christian Ruppert gentoo.org> Signed-off-by: Mike Frysinger gentoo.org> --- sh/functions.sh.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sh/functions.sh.in b/sh/functions.sh.in index da2e51a..ef8281e 100644 --- a/sh/functions.sh.in +++ b/sh/functions.sh.in @@ -104,7 +104,7 @@ else # the last ecmd for _e in ebegin eend error errorn einfo einfon ewarn ewarnn ewend \ vebegin veend veinfo vewarn vewend; do - eval "$_e() { local _r; @LIBEXECDIR@/bin/$_e \"\$@\"; _r=3D$?; \ + eval "$_e() { local _r; @LIBEXECDIR@/bin/$_e \"\$@\"; _r=3D\$?; \ export EINFO_LASTCMD=3D$_e; return \$_r; }" done unset _e