From: PHO Date: Wed, 22 Feb 2012 16:50:33 +0000 (+0900) Subject: Use $(BUILD_MAKE_CMD) instead of $(GMAKE) X-Git-Tag: GHC-7.4.1~2^2~8 X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=pkgsrc-ghc.git;a=commitdiff_plain;h=456d65d2aa1fa8ebff3d39d3eda025ff9bcf31ae Use $(BUILD_MAKE_CMD) instead of $(GMAKE) --- diff --git a/Makefile b/Makefile index 404cb0a..44485c2 100644 --- a/Makefile +++ b/Makefile @@ -160,12 +160,12 @@ ${WRKDIR}/stamp-rewrite-hc-paths: ${WRKDIR}/stamp-extract-hc ${WRKDIR}/stamp-bootstrap-ghc: ${WRKDIR}/stamp-rewrite-hc-paths ${RUN} cd ${WRKDIR}/bootstrap/${DISTNAME} && \ ${PHASE_MSG} "Creating bootstrapping files for ${PKGNAME}" && \ - ${GMAKE} bootstrapping-files && \ + ${BUILD_MAKE_CMD} bootstrapping-files && \ ${PHASE_MSG} "Building bootstrapping compiler for ${PKGNAME}" && \ - ${GMAKE} all_ghc_stage2 && \ + ${BUILD_MAKE_CMD} all_ghc_stage2 && \ ${PHASE_MSG} "Building bootstrapping toolkit for ${PKGNAME}" && \ - ${GMAKE} inplace/bin/ghc-pkg && \ - ${GMAKE} inplace/lib/unlit && \ + ${BUILD_MAKE_CMD} inplace/bin/ghc-pkg && \ + ${BUILD_MAKE_CMD} inplace/lib/unlit && \ inplace/bin/ghc-pkg recache && \ ${CP} -f inplace/bin/ghc-stage2 ${BUILDLINK_DIR}/bin/ghc && \ ${CP} -f inplace/bin/ghc-pkg ${BUILDLINK_DIR}/bin/ghc-pkg && \