From 8a3e0329d858db674ccac9d79a37ab0e1610ef0a Mon Sep 17 00:00:00 2001 From: James Liu Date: Tue, 20 Aug 2024 10:49:48 +1000 Subject: [PATCH] Makefile: Don't install bundled Git Bundled Git binaries are compiled to be embedded inside of the Gitaly binary, not for external use. Therefore, we should remove the `install-bundled-git` targets. --- Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Makefile b/Makefile index 16323a6921..fb400ee3e5 100644 --- a/Makefile +++ b/Makefile @@ -299,16 +299,9 @@ install: build build-bundled-git: build-bundled-git-v2.45 build-bundled-git-v2.45: $(patsubst %,${BUILD_DIR}/bin/gitaly-%-v2.45,${GIT_EXECUTABLES}) -.PHONY: install-bundled-git -## Install bundled Git binaries. The target directory can be modified by -## setting PREFIX and DESTDIR. -install-bundled-git: install-bundled-git-v2.45 -install-bundled-git-v2.45: $(patsubst %,${INSTALL_DEST_DIR}/gitaly-%-v2.45,${GIT_EXECUTABLES}) - ifdef WITH_BUNDLED_GIT build: build-bundled-git prepare-tests: build-bundled-git -install: install-bundled-git else prepare-tests: ${DEPENDENCY_DIR}/git-distribution/git -- GitLab