From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Couder Subject: [PATCH] Makefile: replace "echo 1>..." with "echo >..." Date: Tue, 18 Dec 2012 19:47:20 +0100 Message-ID: <20121218184721.29726.26608.chriscool@tuxfamily.org> Cc: Junio C Hamano , git@vger.kernel.org To: Pat Thoyts X-From: git-owner@vger.kernel.org Tue Dec 18 19:55:35 2012 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Tl2KF-00087h-3s for gcvg-git-2@plane.gmane.org; Tue, 18 Dec 2012 19:55:35 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753816Ab2LRSzP (ORCPT ); Tue, 18 Dec 2012 13:55:15 -0500 Received: from mail-2d.bbox.fr ([194.158.122.57]:43236 "EHLO mail-2d.bbox.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751348Ab2LRSzO (ORCPT ); Tue, 18 Dec 2012 13:55:14 -0500 Received: from [127.0.1.1] (cha92-h01-128-78-31-246.dsl.sta.abo.bbox.fr [128.78.31.246]) by mail-2d.bbox.fr (Postfix) with ESMTP id 731CB61; Tue, 18 Dec 2012 19:55:12 +0100 (CET) X-git-sha1: d88ca3305508d852b4f15c5af2672619d4af7c11 X-Mailer: git-mail-commits v0.5.2 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: This is clearer to many people this way. A similar patch has been sent to the git mailing list for git.git. Signed-off-by: Christian Couder --- Hi Pat, Here is a patch to apply to your git-gui tree following this discussion: http://thread.gmane.org/gmane.comp.version-control.git/211532/ Thanks, Christian. Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e22ba5c..e9c2bc3 100644 --- a/Makefile +++ b/Makefile @@ -254,7 +254,7 @@ lib/tclIndex: $(ALL_LIBFILES) GIT-GUI-VARS auto_mkindex lib '*.tcl' \ | $(TCL_PATH) $(QUIET_2DEVNULL); then : ok; \ else \ - echo 1>&2 " * $(TCL_PATH) failed; using unoptimized loading"; \ + echo >&2 " * $(TCL_PATH) failed; using unoptimized loading"; \ rm -f $@ ; \ echo '# Autogenerated by git-gui Makefile' >$@ && \ echo >>$@ && \ @@ -274,8 +274,8 @@ TRACK_VARS = \ GIT-GUI-VARS: FORCE @VARS='$(TRACK_VARS)'; \ if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \ - echo 1>&2 " * new locations or Tcl/Tk interpreter"; \ - echo 1>$@ "$$VARS"; \ + echo >&2 " * new locations or Tcl/Tk interpreter"; \ + echo >$@ "$$VARS"; \ fi ifdef GITGUI_MACOSXAPP -- 1.8.1.rc1.2.g8740035