diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-28 22:15:57 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-28 22:15:57 -0700 |
commit | 01247d87421d621db3866ce7f2124784fc7f46e5 (patch) | |
tree | 713dd383b2677965636ec93bb694dcdd8269227c /Makefile | |
parent | 69a2d426f0d249bca2c6f754b3c1283c0fa72fd4 (diff) | |
download | git-01247d87421d621db3866ce7f2124784fc7f46e5.tar.gz git-01247d87421d621db3866ce7f2124784fc7f46e5.tar.xz |
Make git pack files use little-endian size encoding
This makes it match the new delta encoding, and admittedly makes the
code easier to follow.
This also updates the PACK file version to 2, since this (and the delta
encoding change in the previous commit) are incompatible with the old
format.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ LIB_OBJS=read-cache.o sha1_file.o usage.o object.o commit.o tree.o blob.o \ tag.o date.o index.o diff-delta.o patch-delta.o entry.o \ epoch.o refs.o csum-file.o LIB_FILE=libgit.a -LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h +LIB_H=cache.h object.h blob.h tree.h commit.h tag.h delta.h epoch.h csum-file.h pack.h LIB_H += strbuf.h LIB_OBJS += strbuf.o |