Skip to content

Commit 9aef126

Browse files
spearceJunio C Hamano
authored andcommitted
Don't yap about merge-subtree during make
By default we are pretty quiet about the actual commands that we are running. So we should continue to be quiet about the new merge-subtree hardlink to merge-recursive. Technically this is not a builtin, but it is close because subtree is actually builtin to a non-builtin. So lets just make things easy and call it a builtin. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 6aead43 commit 9aef126

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ git$X: git.c common-cmds.h $(BUILTIN_OBJS) $(GITLIBS) GIT-CFLAGS
728728
help.o: common-cmds.h
729729

730730
git-merge-subtree$X: git-merge-recursive$X
731-
rm -f $@ && ln git-merge-recursive$X $@
731+
$(QUIET_BUILT_IN)rm -f $@ && ln git-merge-recursive$X $@
732732

733733
$(BUILT_INS): git$X
734734
$(QUIET_BUILT_IN)rm -f $@ && ln git$X $@

0 commit comments

Comments
 (0)