build-common

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

bootstrap.template (370B)


      1 #!/bin/sh
      2 
      3 # Bootstrap the repository.  Used when the repository is checked out from git.
      4 # When using the source tarball, running this script is not necessary.
      5 
      6 set -eu
      7 
      8 if ! git --version >/dev/null; then
      9   echo "git not installed"
     10   exit 1
     11 fi
     12 
     13 git submodule sync
     14 git submodule update --init
     15 rm -f ./configure
     16 cp build-system/taler-build-scripts/configure ./configure