build-common

Shared build system code (usually as a git submodule)
Log | Files | Refs | README | LICENSE

commit 79765062de9bd4cff009a51f4cbfebf1dc8ecd56
parent b2604317980b9cb26f1445dfb6ff82c84f9cbe65
Author: Florian Dold <florian.dold@gmail.com>
Date:   Tue, 21 Apr 2020 15:01:27 +0530

fix submodule initialization

Diffstat:
Mbootstrap.template | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bootstrap.template b/bootstrap.template @@ -10,7 +10,7 @@ if ! git --version >/dev/null; then exit 1 fi -git submodule update --init -git submodule update --recursive --remote git submodule sync -ln -sf build-system/taler-build-scripts/configure ./configure +git submodule update --init +rm -f ./configure +cp build-system/taler-build-scripts/configure ./configure