On cygwin, convert alex's path to a native path
authorIan Lynagh <igloo@earth.li>
Sat, 5 Jul 2008 15:55:59 +0000 (15:55 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 5 Jul 2008 15:55:59 +0000 (15:55 +0000)
aclocal.m4

index ccb2530..f0ad4cf 100644 (file)
@@ -306,6 +306,15 @@ dnl
 AC_DEFUN([FPTOOLS_ALEX],
 [
 AC_PATH_PROG(AlexCmd,alex,)
+# Alex is passed to Cabal, so we need a native path
+if test "x$HostPlatform"  = "xi386-unknown-mingw32" && \
+   test "${OSTYPE}"      != "msys"                  && \
+   test "${AlexCmd}"     != ""
+then
+    # Canonicalise to <drive>:/path/to/gcc
+    AlexCmd=`cygpath -m ${AlexCmd}`
+fi
+
 AC_CACHE_CHECK([for version of alex], fptools_cv_alex_version,
 changequote(, )dnl
 [if test x"$AlexCmd" != x; then