From bddc04cb137959eae9349a3c36156b21637092c8 Mon Sep 17 00:00:00 2001 From: ng0 Date: Mon, 28 Oct 2019 15:16:51 +0000 Subject: rewrite build mechanism to use build-script. --- bootstrap | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 bootstrap (limited to 'bootstrap') diff --git a/bootstrap b/bootstrap new file mode 100755 index 00000000..82700e1b --- /dev/null +++ b/bootstrap @@ -0,0 +1,14 @@ +#!/bin/sh + +# Bootstrap the repository. Used when the repository is checked out from git. +# When using the source tarball, running this script is not necessary. + +set -eu + +if ! git --version >/dev/null; then + echo "git not installed" + exit 1 +fi + +git submodule update --init +cp build-system/taler-build-scripts/configure ./configure -- cgit v1.2.3