From: Ian Lynagh Date: Sat, 5 Jul 2008 16:21:54 +0000 (+0000) Subject: On cygwin, convert Haddock's path to a native path X-Git-Tag: Before_cabalised-GHC~71 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=beabed20fb6b72eb79fcf315b1793ff8da415653 On cygwin, convert Haddock's path to a native path --- diff --git a/aclocal.m4 b/aclocal.m4 index f0ad4cf..df7db2c 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -297,6 +297,15 @@ dnl Darn, I forgot to make Haddock print out its version number when dnl invoked with -v. We could try generating some HTML and grepping dnl through that to find the version number, but I think we'll make dnl do without it for now. +# Haddock is passed to Cabal, so we need a native path +if test "x$HostPlatform" = "xi386-unknown-mingw32" && \ + test "${OSTYPE}" != "msys" && \ + test "${HaddockCmd}" != "" +then + # Canonicalise to :/path/to/gcc + HaddockCmd=`cygpath -m ${HaddockCmd}` + AC_MSG_NOTICE([normalized haddock command to $HaddockCmd]) +fi ]) dnl