summaryrefslogtreecommitdiff
path: root/config.mak.uname
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-05-02 21:24:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-05-02 21:24:12 (GMT)
commit1c07e3eaaf1b29e29da357f835eb15f1a4868f9b (patch)
tree16b049475fae854f68f8ad5fa7009bd1d59c38e8 /config.mak.uname
parentd406f681fe8dc563b75c7c81aaff4f3379974010 (diff)
parente53a64b982bd1351ad165c9ce6077c66fcc7118b (diff)
downloadgit-1c07e3eaaf1b29e29da357f835eb15f1a4868f9b.zip
git-1c07e3eaaf1b29e29da357f835eb15f1a4868f9b.tar.gz
git-1c07e3eaaf1b29e29da357f835eb15f1a4868f9b.tar.bz2
Merge branch 'ad/cygwin-wants-rename' into maint
On Cygwin, object creation uses the "create a temporary and then rename it to the final name" pattern, not "create a temporary, hardlink it to the final name and then unlink the temporary" pattern. This is necessary to use Git on Windows shared directories, and is already enabled for the MinGW and plain Windows builds. It also has been used in Cygwin packaged versions of Git for quite a while. See http://thread.gmane.org/gmane.comp.version-control.git/291853 ($gmane/275680, $gmane/291853). * ad/cygwin-wants-rename: config.mak.uname: Cygwin needs OBJECT_CREATION_USES_RENAMES
Diffstat (limited to 'config.mak.uname')
-rw-r--r--config.mak.uname1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.mak.uname b/config.mak.uname
index fe8096f..40d6b29 100644
--- a/config.mak.uname
+++ b/config.mak.uname
@@ -187,6 +187,7 @@ ifeq ($(uname_O),Cygwin)
X = .exe
UNRELIABLE_FSTAT = UnfortunatelyYes
SPARSE_FLAGS = -isystem /usr/include/w32api -Wno-one-bit-signed-bitfield
+ OBJECT_CREATION_USES_RENAMES = UnfortunatelyNeedsTo
endif
ifeq ($(uname_S),FreeBSD)
NEEDS_LIBICONV = YesPlease