diff options
author | Jeff King <peff@peff.net> | 2011-05-19 17:34:33 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-19 20:02:10 -0700 |
commit | 902bb3645160cae72fe43b5f7f5289968ac01617 (patch) | |
tree | 4e6d99ceee3eb20c0f6278211c00d040cd46ebd4 /Makefile | |
parent | refactor refs_from_alternate_cb to allow passing extra data (diff) | |
download | tgif-902bb3645160cae72fe43b5f7f5289968ac01617.tar.xz |
bisect: refactor sha1_array into a generic sha1 list
This is a generally useful abstraction, so let's let others
make use of it. The refactoring is more or less a straight
copy; however, functions and struct members have had their
names changed to match string_list, which is the most
similar data structure.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -547,6 +547,7 @@ LIB_H += rerere.h LIB_H += resolve-undo.h LIB_H += revision.h LIB_H += run-command.h +LIB_H += sha1-array.h LIB_H += sha1-lookup.h LIB_H += sideband.h LIB_H += sigchain.h @@ -649,6 +650,7 @@ LIB_OBJS += revision.o LIB_OBJS += run-command.o LIB_OBJS += server-info.o LIB_OBJS += setup.o +LIB_OBJS += sha1-array.o LIB_OBJS += sha1-lookup.o LIB_OBJS += sha1_file.o LIB_OBJS += sha1_name.o |