diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-04 02:51:19 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-04 13:26:36 -0800 |
commit | f5948cfe673ec65c09b926249cc02ab4451243fa (patch) | |
tree | e84cf0b675e8b2906443425d4082c8576e486f42 /Makefile | |
parent | f2fea68a0fc29c6378748853abb01aed1c462a50 (diff) | |
download | git-f5948cfe673ec65c09b926249cc02ab4451243fa.tar.gz git-f5948cfe673ec65c09b926249cc02ab4451243fa.tar.xz |
count-delta: no need for this anymore.
This is a companion patch to e29e1147e485654d90a0ea0fd5fb7151bb194265
which made diffcore similarity estimator independent from the packfile
deltifier. There is no reason for us to be counting the xdelta anymore.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -190,7 +190,7 @@ PYMODULES = \ LIB_FILE=libgit.a LIB_H = \ - blob.h cache.h commit.h count-delta.h csum-file.h delta.h \ + blob.h cache.h commit.h csum-file.h delta.h \ diff.h object.h pack.h pkt-line.h quote.h refs.h \ run-command.h strbuf.h tag.h tree.h git-compat-util.h revision.h @@ -200,7 +200,7 @@ DIFF_OBJS = \ diffcore-delta.o LIB_OBJS = \ - blob.o commit.o connect.o count-delta.o csum-file.o \ + blob.o commit.o connect.o csum-file.o \ date.o diff-delta.o entry.o exec_cmd.o ident.o index.o \ object.o pack-check.o patch-delta.o path.o pkt-line.o \ quote.o read-cache.o refs.o run-command.o \ |