X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=configure.ac;h=96950cb6fa600a3e28e6ffd2cc9f354b51b37ff4;hp=9278126f3d76ea44be23d42a617d553e48f0d702;hb=e11c554e94c39223ea55991a552ccb244dfe4364;hpb=3e401d7b2fe29713c11824542422fdce93f4890c diff --git a/configure.ac b/configure.ac index 9278126..96950cb 100644 --- a/configure.ac +++ b/configure.ac @@ -305,12 +305,15 @@ checkOS "$TargetOS" # Verify that the installed (bootstrap) GHC is capable of generating # code for the requested build platform. -if test "$BuildPlatform" != "$bootstrap_target" +if test "$BootingFromHc" = "NO" then - echo "This GHC (${WithGhc}) does not generate code for the build platform" - echo " GHC target platform : $bootstrap_target" - echo " Desired build platform : $BuildPlatform" - exit 1 + if test "$BuildPlatform" != "$bootstrap_target" + then + echo "This GHC (${WithGhc}) does not generate code for the build platform" + echo " GHC target platform : $bootstrap_target" + echo " Desired build platform : $BuildPlatform" + exit 1 + fi fi echo "GHC build : $BuildPlatform"