Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-02-24 16:59:58 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-02-25 14:42:05 +0300
commitdc43840e07d4006c37e936a8fadcac1bf6470344 (patch)
tree8b9f311f36b2d1b95dacf67f95611eb5b6337364
parent548dd753173bc60964df0558505e405b72e9b626 (diff)
Makefile: Fix missing quiet-prefix
The `git switch` invocation for the libgit2.a build target is missing its `${Q}` prefix, which causes it to get unconditionally printed. Let's add it to be in line with the git build target.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f8a7fa0ac..278d7171b 100644
--- a/Makefile
+++ b/Makefile
@@ -411,7 +411,7 @@ ${LIBGIT2_INSTALL_DIR}/lib/libgit2.a: ${DEPENDENCY_DIR}/libgit2.version
elif ! git -C "${LIBGIT2_SOURCE_DIR}" rev-parse --quiet --verify ${LIBGIT2_VERSION}^{tree} >/dev/null; then \
${GIT} -C "${LIBGIT2_SOURCE_DIR}" fetch --depth 1 --quiet ${LIBGIT2_REPO_URL} ${LIBGIT2_VERSION}; \
fi
- ${GIT} -C "${LIBGIT2_SOURCE_DIR}" switch --quiet --detach ${LIBGIT2_VERSION}
+ ${Q}${GIT} -C "${LIBGIT2_SOURCE_DIR}" switch --quiet --detach ${LIBGIT2_VERSION}
${Q}rm -rf ${LIBGIT2_BUILD_DIR}
${Q}mkdir -p ${LIBGIT2_BUILD_DIR}
${Q}cd ${LIBGIT2_BUILD_DIR} && cmake ${LIBGIT2_SOURCE_DIR} ${LIBGIT2_BUILD_OPTIONS}