diff options
author | Ian Lynagh <igloo@earth.li> | 2010-03-25 14:34:49 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-03-25 14:34:49 +0000 |
commit | 729edce172e627ba75b9fbaba35b596cb7fd4624 (patch) | |
tree | e28b7c92ff7437eddcaffc71baa768477810bcab /aclocal.m4 | |
parent | eb86e5a2aa0792c7826eef681048ce3b21633a18 (diff) | |
download | haskell-729edce172e627ba75b9fbaba35b596cb7fd4624.tar.gz |
Quote the paths to alex and happy in configure
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index f7b810ad42..a9bdcea2b0 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -264,7 +264,7 @@ if test "x$HostPlatform" = "xi386-unknown-mingw32" && \ test "${HappyCmd}" != "" then # Canonicalise to <drive>:/path/to/gcc - HappyCmd=`cygpath -m ${HappyCmd}` + HappyCmd=`cygpath -m "${HappyCmd}"` AC_MSG_NOTICE([normalized happy command to $HappyCmd]) fi @@ -300,7 +300,7 @@ if test "x$HostPlatform" = "xi386-unknown-mingw32" && \ test "${AlexCmd}" != "" then # Canonicalise to <drive>:/path/to/gcc - AlexCmd=`cygpath -m ${AlexCmd}` + AlexCmd=`cygpath -m "${AlexCmd}"` fi AC_CACHE_CHECK([for version of alex], fptools_cv_alex_version, |