From: Christian Halstrick <christian.halstrick@xxxxxxx> My MSYS installation sets the environment variable MSYSTEM to "MINGW32" which was not handled in make_jgit.sh. Corrected that. Also Suns Windows javac doesn't like classpathes with /<driveletter/<dir>. When using `pwd -W` i get pathes accepted by windows javac. Signed-off-by: Christian Halstrick <christian.halstrick@xxxxxxx> --- make_jgit.sh | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/make_jgit.sh b/make_jgit.sh index 027a074..baaa3af 100755 --- a/make_jgit.sh +++ b/make_jgit.sh @@ -22,9 +22,10 @@ then R=`cygpath -m $R` PSEP=";" fi -if [ "$MSYSTEM" = "MINGW" ] +if [ "$MSYSTEM" = "MINGW" -o "$MSYSTEM" = "MINGW32" ] then PSEP=";" + R=`pwd -W` fi if [ -n "$JAVA_HOME" ] -- 1.6.3.2.1299.gee46c -- 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