diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-12-20 17:39:41 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-21 23:10:14 -0800 |
commit | 658f3650273abd6888c964b9fb1291c603306df8 (patch) | |
tree | 55cd330d65c42fe611ac1b6401ddc83ae7489400 /Makefile | |
parent | ad8e72cba8e8dee8fccf11d98f197a44b5e3c10a (diff) | |
download | git-658f3650273abd6888c964b9fb1291c603306df8.tar.gz git-658f3650273abd6888c964b9fb1291c603306df8.tar.xz |
Make git-rerere a builtin
The perl version used modules which are non-standard in some setups.
This patch brings the full power of rerere to a wider audience.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -174,7 +174,6 @@ SCRIPT_SH = \ SCRIPT_PERL = \ git-archimport.perl git-cvsimport.perl git-relink.perl \ - git-rerere.perl \ git-cvsserver.perl \ git-svnimport.perl git-cvsexportcommit.perl \ git-send-email.perl git-svn.perl @@ -289,6 +288,7 @@ BUILTIN_OBJS = \ builtin-push.o \ builtin-read-tree.o \ builtin-repo-config.o \ + builtin-rerere.o \ builtin-rev-list.o \ builtin-rev-parse.o \ builtin-rm.o \ |