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>2022-10-12 09:39:04 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-10-12 16:24:55 +0300
commit374ae6c9473f7158cbcd23e0cf7ad4f189988f77 (patch)
tree807e648381093f293f3387e22164808eeeb6613e
parent81ea4d52b0e558704ee49dde9e8516bc18c09619 (diff)
Makefile: Drop removed tracing build option for libgit2
With the upgrade to libgit2 the tracing code was made to compile unconditionally upstream. The old build option to enable tracing was thus removed from the build system. Adapt our build instructions accordingly.
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b7efa3b34..7614596e6 100644
--- a/Makefile
+++ b/Makefile
@@ -197,7 +197,6 @@ ifeq ($(origin LIBGIT2_BUILD_OPTIONS),undefined)
LIBGIT2_BUILD_OPTIONS += -DCMAKE_BUILD_TYPE=Release
LIBGIT2_BUILD_OPTIONS += -DCMAKE_INSTALL_PREFIX=${LIBGIT2_INSTALL_DIR}
LIBGIT2_BUILD_OPTIONS += -DCMAKE_INSTALL_LIBDIR=lib
- LIBGIT2_BUILD_OPTIONS += -DENABLE_TRACE=OFF
LIBGIT2_BUILD_OPTIONS += -DUSE_SSH=OFF
LIBGIT2_BUILD_OPTIONS += -DUSE_HTTPS=OFF
LIBGIT2_BUILD_OPTIONS += -DUSE_ICONV=OFF