Skip to content

Commit 9f31646

Browse files
chriscoolpatthoyts
authored andcommitted
Makefile: replace "echo 1>..." with "echo >..."
This is clearer to many people this way. Signed-off-by: Christian Couder <[email protected]> Signed-off-by: Junio C Hamano <[email protected]> Signed-off-by: Pat Thoyts <[email protected]>
1 parent ab571ef commit 9f31646

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ lib/tclIndex: $(ALL_LIBFILES) GIT-GUI-VARS
254254
auto_mkindex lib '*.tcl' \
255255
| $(TCL_PATH) $(QUIET_2DEVNULL); then : ok; \
256256
else \
257-
echo 1>&2 " * $(TCL_PATH) failed; using unoptimized loading"; \
257+
echo >&2 " * $(TCL_PATH) failed; using unoptimized loading"; \
258258
rm -f $@ ; \
259259
echo '# Autogenerated by git-gui Makefile' >$@ && \
260260
echo >>$@ && \
@@ -274,8 +274,8 @@ TRACK_VARS = \
274274
GIT-GUI-VARS: FORCE
275275
@VARS='$(TRACK_VARS)'; \
276276
if test x"$$VARS" != x"`cat $@ 2>/dev/null`" ; then \
277-
echo 1>&2 " * new locations or Tcl/Tk interpreter"; \
278-
echo 1>$@ "$$VARS"; \
277+
echo >&2 " * new locations or Tcl/Tk interpreter"; \
278+
echo >$@ "$$VARS"; \
279279
fi
280280

281281
ifdef GITGUI_MACOSXAPP

0 commit comments

Comments
 (0)