From: Ian Lynagh Date: Sat, 13 Sep 2008 10:46:58 +0000 (+0000) Subject: Change how we detect if we are using the bootstrapping compiler or not X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=65446998cecc828631beba145560933d7d15cf8e Change how we detect if we are using the bootstrapping compiler or not I think looking for $(GHC_COMPILER_DIR_ABS) was failing on the Windows buildbot due to different path separators. Now we just look for "inplace". --- diff --git a/mk/config.mk.in b/mk/config.mk.in index 9034773..068add5 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -949,8 +949,8 @@ GhcMinVersion = @GhcMinVersion@ # when $(HC) does *not* point to one of the GHC binaries built in # the local tree. # -BOOTSTRAPPING_PACKAGE_CONF_HC_OPTS =$(if $(findstring $(GHC_COMPILER_DIR_ABS), $(HC)),,-package-conf $(BOOTSTRAPPING_CONF)) -BOOTSTRAPPING_PACKAGE_CONF_MKDEPENDHS_OPTS =$(if $(findstring $(GHC_COMPILER_DIR_ABS), $(MKDEPENDHS)),,-package-conf $(BOOTSTRAPPING_CONF)) +BOOTSTRAPPING_PACKAGE_CONF_HC_OPTS =$(if $(findstring inplace, $(HC)),,-package-conf $(BOOTSTRAPPING_CONF)) +BOOTSTRAPPING_PACKAGE_CONF_MKDEPENDHS_OPTS =$(if $(findstring inplace, $(MKDEPENDHS)),,-package-conf $(BOOTSTRAPPING_CONF)) # Some useful GHC version predicates: ghc_ge_605 = @ghc_ge_605@