Skip to content

Commit

Permalink
Merge branch 'ab/install-symlinks'
Browse files Browse the repository at this point in the history
The build procedure learned to optionally use symbolic links
(instead of hardlinks and copies) to install "git-foo" for built-in
commands, whose binaries are all identical.

* ab/install-symlinks:
  Makefile: optionally symlink libexec/git-core binaries to bin/git
  Makefile: add a gitexecdir_relative variable
  Makefile: fix broken bindir_relative variable

[jes: merged into Git for Windows early, to facilitate work on skipping
the builtins entirely if desired, if I ever find the time to work on
this...]

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
gitster authored and dscho committed Apr 23, 2018
2 parents df8884c + ad87460 commit 82f1b61
Showing 1 changed file with 34 additions and 17 deletions.
51 changes: 34 additions & 17 deletions Makefile
Expand Up @@ -335,6 +335,13 @@ all::
# when hardlinking a file to another name and unlinking the original file right # when hardlinking a file to another name and unlinking the original file right
# away (some NTFS drivers seem to zero the contents in that scenario). # away (some NTFS drivers seem to zero the contents in that scenario).
# #
# Define INSTALL_SYMLINKS if you prefer to have everything that can be
# symlinked between bin/ and libexec/ to use relative symlinks between
# the two. This option overrides NO_CROSS_DIRECTORY_HARDLINKS and
# NO_INSTALL_HARDLINKS which will also use symlinking by indirection
# within the same directory in some cases, INSTALL_SYMLINKS will
# always symlink to the final target directly.
#
# Define NO_CROSS_DIRECTORY_HARDLINKS if you plan to distribute the installed # Define NO_CROSS_DIRECTORY_HARDLINKS if you plan to distribute the installed
# programs as a tar, where bin/ and libexec/ might be on different file systems. # programs as a tar, where bin/ and libexec/ might be on different file systems.
# #
Expand Down Expand Up @@ -499,8 +506,7 @@ ARFLAGS = rcs
# This can help installing the suite in a relocatable way. # This can help installing the suite in a relocatable way.


prefix = $(HOME) prefix = $(HOME)
bindir_relative = bin bindir = $(prefix)/bin
bindir = $(prefix)/$(bindir_relative)
mandir = $(prefix)/share/man mandir = $(prefix)/share/man
infodir = $(prefix)/share/info infodir = $(prefix)/share/info
gitexecdir = libexec/git-core gitexecdir = libexec/git-core
Expand All @@ -517,6 +523,7 @@ lib = lib
# DESTDIR = # DESTDIR =
pathsep = : pathsep = :


bindir_relative = $(patsubst $(prefix)/%,%,$(bindir))
mandir_relative = $(patsubst $(prefix)/%,%,$(mandir)) mandir_relative = $(patsubst $(prefix)/%,%,$(mandir))
infodir_relative = $(patsubst $(prefix)/%,%,$(infodir)) infodir_relative = $(patsubst $(prefix)/%,%,$(infodir))
gitexecdir_relative = $(patsubst $(prefix)/%,%,$(gitexecdir)) gitexecdir_relative = $(patsubst $(prefix)/%,%,$(gitexecdir))
Expand Down Expand Up @@ -1788,6 +1795,7 @@ perllibdir_SQ = $(subst ','\'',$(perllibdir))
localedir_SQ = $(subst ','\'',$(localedir)) localedir_SQ = $(subst ','\'',$(localedir))
localedir_relative_SQ = $(subst ','\'',$(localedir_relative)) localedir_relative_SQ = $(subst ','\'',$(localedir_relative))
gitexecdir_SQ = $(subst ','\'',$(gitexecdir)) gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
gitexecdir_relative_SQ = $(subst ','\'',$(gitexecdir_relative))
template_dir_SQ = $(subst ','\'',$(template_dir)) template_dir_SQ = $(subst ','\'',$(template_dir))
htmldir_relative_SQ = $(subst ','\'',$(htmldir_relative)) htmldir_relative_SQ = $(subst ','\'',$(htmldir_relative))
prefix_SQ = $(subst ','\'',$(prefix)) prefix_SQ = $(subst ','\'',$(prefix))
Expand Down Expand Up @@ -2738,35 +2746,44 @@ endif


bindir=$$(cd '$(DESTDIR_SQ)$(bindir_SQ)' && pwd) && \ bindir=$$(cd '$(DESTDIR_SQ)$(bindir_SQ)' && pwd) && \
execdir=$$(cd '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' && pwd) && \ execdir=$$(cd '$(DESTDIR_SQ)$(gitexec_instdir_SQ)' && pwd) && \
destdir_from_execdir_SQ=$$(echo '$(gitexecdir_relative_SQ)' | sed -e 's|[^/][^/]*|..|g') && \
{ test "$$bindir/" = "$$execdir/" || \ { test "$$bindir/" = "$$execdir/" || \
for p in git$X $(filter $(install_bindir_programs),$(ALL_PROGRAMS)); do \ for p in git$X $(filter $(install_bindir_programs),$(ALL_PROGRAMS)); do \
$(RM) "$$execdir/$$p" && \ $(RM) "$$execdir/$$p" && \
test -z "$(NO_INSTALL_HARDLINKS)$(NO_CROSS_DIRECTORY_HARDLINKS)" && \ test -n "$(INSTALL_SYMLINKS)" && \
ln "$$bindir/$$p" "$$execdir/$$p" 2>/dev/null || \ ln -s "$$destdir_from_execdir_SQ/$(bindir_relative_SQ)/$$p" "$$execdir/$$p" || \
cp "$$bindir/$$p" "$$execdir/$$p" || exit; \ { test -z "$(NO_INSTALL_HARDLINKS)$(NO_CROSS_DIRECTORY_HARDLINKS)" && \
ln "$$bindir/$$p" "$$execdir/$$p" 2>/dev/null || \
cp "$$bindir/$$p" "$$execdir/$$p" || exit; } \
done; \ done; \
} && \ } && \
for p in $(filter $(install_bindir_programs),$(BUILT_INS)); do \ for p in $(filter $(install_bindir_programs),$(BUILT_INS)); do \
$(RM) "$$bindir/$$p" && \ $(RM) "$$bindir/$$p" && \
test -z "$(NO_INSTALL_HARDLINKS)" && \ test -n "$(INSTALL_SYMLINKS)" && \
ln "$$bindir/git$X" "$$bindir/$$p" 2>/dev/null || \ ln -s "git$X" "$$bindir/$$p" || \
ln -s "git$X" "$$bindir/$$p" 2>/dev/null || \ { test -z "$(NO_INSTALL_HARDLINKS)" && \
cp "$$bindir/git$X" "$$bindir/$$p" || exit; \ ln "$$bindir/git$X" "$$bindir/$$p" 2>/dev/null || \
ln -s "git$X" "$$bindir/$$p" 2>/dev/null || \
cp "$$bindir/git$X" "$$bindir/$$p" || exit; } \
done && \ done && \
for p in $(BUILT_INS); do \ for p in $(BUILT_INS); do \
$(RM) "$$execdir/$$p" && \ $(RM) "$$execdir/$$p" && \
test -z "$(NO_INSTALL_HARDLINKS)" && \ test -n "$(INSTALL_SYMLINKS)" && \
ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \ ln -s "$$destdir_from_execdir_SQ/$(bindir_relative_SQ)/git$X" "$$execdir/$$p" || \
ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \ { test -z "$(NO_INSTALL_HARDLINKS)" && \
cp "$$execdir/git$X" "$$execdir/$$p" || exit; \ ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \
ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \
cp "$$execdir/git$X" "$$execdir/$$p" || exit; } \
done && \ done && \
remote_curl_aliases="$(REMOTE_CURL_ALIASES)" && \ remote_curl_aliases="$(REMOTE_CURL_ALIASES)" && \
for p in $$remote_curl_aliases; do \ for p in $$remote_curl_aliases; do \
$(RM) "$$execdir/$$p" && \ $(RM) "$$execdir/$$p" && \
test -z "$(NO_INSTALL_HARDLINKS)" && \ test -n "$(INSTALL_SYMLINKS)" && \
ln "$$execdir/git-remote-http$X" "$$execdir/$$p" 2>/dev/null || \ ln -s "git-remote-http$X" "$$execdir/$$p" || \
ln -s "git-remote-http$X" "$$execdir/$$p" 2>/dev/null || \ { test -z "$(NO_INSTALL_HARDLINKS)" && \
cp "$$execdir/git-remote-http$X" "$$execdir/$$p" || exit; \ 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 && \ done && \
./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X" ./check_bindir "z$$bindir" "z$$execdir" "$$bindir/git-add$X"


Expand Down

0 comments on commit 82f1b61

Please sign in to comment.