deps/Makefile: fix checkout logic for branches

Checkout origin/$branch instead of $branch. Otherwise git will just use
the local version of branch and stay at the same commit.

Note that Ia846863eff1734eca469257b9a8d5e653a45e835 changes the lines
which still have "master" to the commit. Fixing this is still useful
however, if a branch name is used in local testing.

Change-Id: If6bd440598d375a9947cb3a4fd88ae5809756e0e
This commit is contained in:
Oliver Smith 2021-04-19 12:22:29 +02:00 committed by laforge
parent 36ef7fc046
commit a25525d38c
1 changed files with 9 additions and 1 deletions

10
deps/Makefile vendored
View File

@ -152,7 +152,15 @@ ifneq ($$($(1)_ORIGIN),$(2)/$(1))
cd $(1) && git remote set-url origin $(2)/$(1) && git fetch
endif
ifneq ($$($(1)_HEAD),$($(1)_commit))
cd $(1) && git fetch && git checkout -q -f "$($(1)_commit)"
cd $(1) && \
git fetch && \
if git rev-parse "origin/$($(1)_commit)" 2>/dev/null; then \
set -x && \
git checkout -q -f "origin/$($(1)_commit)"; \
else \
set -x && \
git checkout -q -f "$($(1)_commit)"; \
fi
endif
endif