summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-02-15 11:42:59 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-02-15 20:11:26 +0000
commitf6251134c94c5424dac633a107e07a2403e3a56d (patch)
tree84d58e49fecf2a9c78ca2c38df498ac1aa2be4d5 /Makefile.in
parent346b64473a6064247bca471e8054d1879428d017 (diff)
configure: drop no longer working --with-linked-git option
--with-referenced-git works with submodules, --with-linked-git does not. And I don't see a way to fix it, either. Change-Id: Ib6cdb065a022665cd62e9fdc7fc37a9e916e50ad Reviewed-on: https://gerrit.libreoffice.org/2165 Reviewed-by: Matúš Kukan <matus.kukan@gmail.com> Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Reviewed-by: Miklos Vajna <vmiklos@suse.cz> Tested-by: Miklos Vajna <vmiklos@suse.cz>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 0 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in
index 445daa08edf4..8f878406bd8a 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -222,15 +222,7 @@ fetch: get-submodules
ifneq (,$(wildcard $(SRCDIR)/.git))
get-submodules:
ifneq ($(foreach i,$(GIT_NEEDED_SUBMODULES),$(i)/.git),$(wildcard $(foreach i,$(GIT_NEEDED_SUBMODULES),$(i)/.git)))
-ifeq (,$(GIT_LINK_SRC))
cd $(SRCDIR) && ./g -f clone
-else # space-saving clone from another local workdir
- @echo "FIXME: GIT_LINK_SRC method is not yet implemented with submodules" 1>&2
- true $(foreach i,$(GIT_NEEDED_SUBMODULES),\
- && rm -r $(i) && cp -R $(GIT_LINK_SRC)/$(i) $(i))
-# bin/git-new-workdir $GIT_LINK_SRC/$i $i
- git submodule update $(GIT_NEEDED_SUBMODULES)
-endif
endif
@cd $(SRCDIR) && ./g -z # make sure the git hooks are in place enen if no submodules are needed