--- Requires cherry-picking 6397c3119ecaa258b5185315c64062bec29bcd86 sha1_file.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/sha1_file.c b/sha1_file.c index 97ea448..fa867b8 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -84,7 +84,7 @@ int get_sha1_hex(const char *hex, unsigned char *sha1) /* returns the number of chars to skip to first component */ static inline int is_path_absolute(const char *path) { -#ifdef __MINGW32__ +#if defined(__MINGW32__) || defined(__CYGWIN__) if (isalpha(path[0]) && path[1] == ':') return 2 + (path[2] == '/'); /* TODO: C:dir/file 'relative' paths are not catered for */ -- 1.5.3.rc7.25.g5389f-dirty - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html