git: 4aa96fa6a749 - main - Uses/cabal.mk: Do not hide commands being run.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 12 Mar 2023 07:16:30 UTC
The branch main has been updated by arrowd: URL: https://cgit.FreeBSD.org/ports/commit/?id=4aa96fa6a749208bb45edbfdba86cbd373b7f6ec commit 4aa96fa6a749208bb45edbfdba86cbd373b7f6ec Author: Gleb Popov <arrowd@FreeBSD.org> AuthorDate: 2022-10-02 14:50:58 +0000 Commit: Gleb Popov <arrowd@FreeBSD.org> CommitDate: 2023-03-12 07:15:53 +0000 Uses/cabal.mk: Do not hide commands being run. --- Mk/Uses/cabal.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mk/Uses/cabal.mk b/Mk/Uses/cabal.mk index 0dda929e7e57..a788a66c2b9b 100644 --- a/Mk/Uses/cabal.mk +++ b/Mk/Uses/cabal.mk @@ -187,17 +187,17 @@ cabal-extract: check-cabal . if ${_hackage_is_default} == no @${ECHO_MSG} "===> Recursing down to make extract" @${MAKE} -C ${.CURDIR} extract SKIP_CABAL_EXTRACT=yes USE_CABAL= - ${RM} -rf ${CABAL_HOME} + ${RM} -r ${CABAL_HOME} . endif @${ECHO_MSG} "===> Fetching Hackage index into ${CABAL_HOME}/.cabal" - @${SETENV} HOME=${CABAL_HOME} ${CABAL_CMD} update + ${SETENV} HOME=${CABAL_HOME} ${CABAL_CMD} update . if ${_hackage_is_default} == yes - @cd ${WRKDIR} && \ + cd ${WRKDIR} && \ ${SETENV} ${MAKE_ENV} HOME=${CABAL_HOME} ${CABAL_CMD} get ${PORTNAME}-${PORTVERSION} . else . if ${cabal_ARGS:Mhpack} @${ECHO_MSG} "===> Running ${HPACK_CMD} to generate .cabal file" - @cd ${WRKSRC} && ${SETENV} HOME=${CABAL_HOME} ${HPACK_CMD} + cd ${WRKSRC} && ${SETENV} HOME=${CABAL_HOME} ${HPACK_CMD} . endif . endif # Remove Haskell dependencies that come from GH_TUPLE