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:
authorSami Hiltunen <shiltunen@gitlab.com>2021-05-25 12:39:06 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2021-05-25 12:39:06 +0300
commitcb42b08813fddb3f92aed6afde5246a1a19781b0 (patch)
tree4114387e31e577b43c4e44dd34111e9a158c630a /Makefile
parent0a748a623ffecd910dbc2f8f2ff542df3b067622 (diff)
Revert "Makefile: Stop installing binaries into source dir"
This reverts commit eb6fd60561cffdbb183e74456268439bad60b21c.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 806d646e3..62350f73b 100644
--- a/Makefile
+++ b/Makefile
@@ -188,7 +188,8 @@ export CGO_LDFLAGS_ALLOW = -D_THREAD_SAFE
.SECONDARY:
.PHONY: all
-all: build
+all: INSTALL_DEST_DIR = ${SOURCE_DIR}
+all: install
.PHONY: build
build: ${SOURCE_DIR}/.ruby-bundle libgit2
@@ -281,7 +282,7 @@ notice: ${SOURCE_DIR}/NOTICE
.PHONY: clean
clean:
- rm -rf ${BUILD_DIR} ${SOURCE_DIR}/internal/testhelper/testdata/data/ ${SOURCE_DIR}/ruby/.bundle/ ${SOURCE_DIR}/ruby/vendor/bundle/
+ rm -rf ${BUILD_DIR} ${SOURCE_DIR}/internal/testhelper/testdata/data/ ${SOURCE_DIR}/ruby/.bundle/ ${SOURCE_DIR}/ruby/vendor/bundle/ $(addprefix ${SOURCE_DIR}/, $(notdir $(call find_commands)))
.PHONY: clean-ruby-vendor-go
clean-ruby-vendor-go: