summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2009-11-19 18:46:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-11-20 07:41:29 (GMT)
commit756078749f7a87bc50d4c22db18e26a09c45059d (patch)
treea9c53676930988bdb58e930ca44a47e82e5d1c19 /Makefile
parent78d553b7d7b269bb22ebd8b1198657c37484a3a0 (diff)
downloadgit-756078749f7a87bc50d4c22db18e26a09c45059d.zip
git-756078749f7a87bc50d4c22db18e26a09c45059d.tar.gz
git-756078749f7a87bc50d4c22db18e26a09c45059d.tar.bz2
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 <ramsay@ramsay1.demon.co.uk> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index fea237b..79195c8 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