diff options
author | Junio C Hamano <junkio@cox.net> | 2007-02-06 21:27:09 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-06 21:33:20 -0800 |
commit | 6506e156d99bd406661cd5d2e502db7c0960d716 (patch) | |
tree | 0dbdb4c474e4bca200579d5ea81d353c0a279c90 /Makefile | |
parent | 740afd961370ba3925ba3a1edf5b499bb068fd9a (diff) | |
download | git-6506e156d99bd406661cd5d2e502db7c0960d716.tar.gz git-6506e156d99bd406661cd5d2e502db7c0960d716.tar.xz |
Remove git-merge-recur
This was useful when the current recursive was in development, and
the original Python version was still called git-merge-recursive.
Now the synonym has served us well, it is time to move on.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -219,8 +219,7 @@ BUILT_INS = \ $(patsubst builtin-%.o,git-%$X,$(BUILTIN_OBJS)) # what 'all' will build and 'install' will install, in gitexecdir -ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS) \ - git-merge-recur$X +ALL_PROGRAMS = $(PROGRAMS) $(SCRIPTS) # Backward compatibility -- to be removed after 1.0 PROGRAMS += git-ssh-pull$X git-ssh-push$X @@ -627,9 +626,6 @@ git$X: git.c common-cmds.h $(BUILTIN_OBJS) $(GITLIBS) GIT-CFLAGS help.o: common-cmds.h -git-merge-recur$X: git-merge-recursive$X - rm -f $@ && ln git-merge-recursive$X $@ - $(BUILT_INS): git$X rm -f $@ && ln git$X $@ @@ -936,7 +932,7 @@ check-docs:: do \ case "$$v" in \ git-merge-octopus | git-merge-ours | git-merge-recursive | \ - git-merge-resolve | git-merge-stupid | git-merge-recur | \ + git-merge-resolve | git-merge-stupid | \ git-ssh-pull | git-ssh-push ) continue ;; \ esac ; \ test -f "Documentation/$$v.txt" || \ |