From: Christian Halstrick <redacted>
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 <redacted>
---
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