From beabed20fb6b72eb79fcf315b1793ff8da415653 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 5 Jul 2008 16:21:54 +0000 Subject: [PATCH] On cygwin, convert Haddock's path to a native path --- aclocal.m4 | 9 +++++++++ 1 file changed, 9 insertions(+) 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 -- 1.7.10.4