summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-12-27 23:12:31 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-12-27 23:12:31 (GMT)
commit87ac1390d9ac2ab5e495b543caee12221a773fb7 (patch)
tree22181d7f4db9575ae4fa559e546c659b65d4299b /Makefile
parentccdfdea08db398fca1580a970c0d283affa5343f (diff)
downloadgit-87ac1390d9ac2ab5e495b543caee12221a773fb7.zip
git-87ac1390d9ac2ab5e495b543caee12221a773fb7.tar.gz
git-87ac1390d9ac2ab5e495b543caee12221a773fb7.tar.bz2
Set NO_MMAP for Cygwin by default
This should not be necessary for people who only use NTFS, but for people with FAT32 it seems to be an issue. Let's ship with a safer default. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 52d4a3a..f862170 100644
--- a/Makefile
+++ b/Makefile
@@ -360,8 +360,8 @@ ifeq ($(uname_O),Cygwin)
NO_FAST_WORKING_DIRECTORY = UnfortunatelyYes
# There are conflicting reports about this.
# On some boxes NO_MMAP is needed, and not so elsewhere.
- # Try uncommenting this if you see things break -- YMMV.
- # NO_MMAP = YesPlease
+ # Try commenting this out if you suspect MMAP is more efficient
+ NO_MMAP = YesPlease
NO_IPV6 = YesPlease
X = .exe
endif