summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorJoachim Schmitz <jojo@schmitz-digital.de>2012-08-24 10:31:03 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-08-24 16:48:51 (GMT)
commit0539ecfdfce677b05992af5e9899a9e974130400 (patch)
tree81649716a1979403fe216ab1d9b31ec062a8c413 /git-compat-util.h
parentfab4b04e4be5ccfdf93e21e7260040bd9e7faedd (diff)
downloadgit-0539ecfdfce677b05992af5e9899a9e974130400.zip
git-0539ecfdfce677b05992af5e9899a9e974130400.tar.gz
git-0539ecfdfce677b05992af5e9899a9e974130400.tar.bz2
compat: some mkdir() do not like a slash at the end
Introduce a compatibility helper for platforms with such a mkdir(). Signed-off-by: Joachim Schmitz <jojo@schmitz-digital.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index 35b095e..34f040f 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -162,6 +162,11 @@
#define probe_utf8_pathname_composition(a,b)
#endif
+#ifdef MKDIR_WO_TRAILING_SLASH
+#define mkdir(a,b) compat_mkdir_wo_trailing_slash((a),(b))
+extern int compat_mkdir_wo_trailing_slash(const char*, mode_t);
+#endif
+
#ifndef NO_LIBGEN_H
#include <libgen.h>
#else