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

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-09-15 23:15:25 +0300
committerJunio C Hamano <gitster@pobox.com>2021-09-15 23:15:25 +0300
commit59a29d16440a4c660b0b388d5f6da65d41102b7c (patch)
tree5beb52c49345cb88d55397e52dd3aa212808de6f
parent10de757a09414a06739478c687ea6a24234c8ee8 (diff)
parent72b113e5621febe5d5138f73e464a4962b3b7851 (diff)
Merge branch 'ab/no-more-check-bindir'
Build simplification. * ab/no-more-check-bindir: Makefile: remove the check_bindir script
-rw-r--r--Makefile3
-rwxr-xr-xcheck_bindir13
2 files changed, 1 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index 429c276058..60c995696c 100644
--- a/Makefile
+++ b/Makefile
@@ -3099,8 +3099,7 @@ endif
ln "$$execdir/git-remote-http$X" "$$execdir/$$p" 2>/dev/null || \
ln -s "git-remote-http$X" "$$execdir/$$p" 2>/dev/null || \
cp "$$execdir/git-remote-http$X" "$$execdir/$$p" || exit; } \
- done && \
- ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"
+ done
.PHONY: install-gitweb install-doc install-man install-man-perl install-html install-info install-pdf
.PHONY: quick-install-doc quick-install-man quick-install-html
diff --git a/check_bindir b/check_bindir
deleted file mode 100755
index 623eadcbb7..0000000000
--- a/check_bindir
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-bindir="$1"
-gitexecdir="$2"
-gitcmd="$3"
-if test "$bindir" != "$gitexecdir" && test -x "$gitcmd"
-then
- echo
- echo "!! You have installed git-* commands to new gitexecdir."
- echo "!! Old version git-* commands still remain in bindir."
- echo "!! Mixing two versions of Git will lead to problems."
- echo "!! Please remove old version commands in bindir now."
- echo
-fi