diff options
author | jan Iversen <jani@libreoffice.org> | 2018-03-11 12:27:43 +0100 |
---|---|---|
committer | jan Iversen <jani@libreoffice.org> | 2018-03-11 12:30:05 +0100 |
commit | e6d2332eae92b8f288d3d3f8aa2090abfa777098 (patch) | |
tree | 600eb843719af6ce83bb28f3b35d8fd96707c5e6 | |
parent | 82d9af7f14c808d48fa5db9420c85a8d26c79905 (diff) |
Allow use of "git worktree" in Makefile.in
When using git worktree $(SRCDIR)/.git is a file and not a directory, therefore
get-submodules: fails in "./g -z".
Eliminating call to "./g -z" in worktree directories, but keeping it in the
cloned directory.
Change-Id: I88d8e3e06cac2a2710da21ae233364d8119fe5ef
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 470c6956cc0e..0b2340a0ef58 100644 --- a/Makefile.in +++ b/Makefile.in @@ -241,7 +241,9 @@ get-submodules: ifneq ($(foreach i,$(GIT_NEEDED_SUBMODULES),$(i)/.git),$(wildcard $(foreach i,$(GIT_NEEDED_SUBMODULES),$(i)/.git))) cd $(SRCDIR) && ./g -f clone endif +ifeq ($(shell test -d $(SRCDIR)/.git; echo $$?),0) @cd $(SRCDIR) && ./g -z # make sure the git hooks are in place even if no submodules are needed +endif else # these sources are from a tarball, so get the other source tarballs gb_LO_VER := $(shell . $(SRCDIR)/sources.ver && echo $$lo_sources_ver) |