From: Ramsay Jones Date: Thu, 19 Nov 2009 18:46:24 +0000 (+0000) Subject: git-count-objects: Fix a disk-space under-estimate on Cygwin X-Git-Tag: v1.6.5.5~12^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/756078749f7a87bc50d4c22db18e26a09c45059d git-count-objects: Fix a disk-space under-estimate on Cygwin Cygwin has st_blocks in struct stat, but at least on NTFS, the field counts in blocks of st_blksize bytes, not in 512-byte blocks. Signed-off-by: Ramsay Jones Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index fea237bc80..79195c875b 100644 --- a/Makefile +++ b/Makefile @@ -776,6 +776,7 @@ ifeq ($(uname_O),Cygwin) NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes NO_TRUSTABLE_FILEMODE = UnfortunatelyYes OLD_ICONV = UnfortunatelyYes + NO_ST_BLOCKS_IN_STRUCT_STAT = YesPlease # There are conflicting reports about this. # On some boxes NO_MMAP is needed, and not so elsewhere. # Try commenting this out if you suspect MMAP is more efficient