gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-landing] branch master updated: add bootstrap script


From: gnunet
Subject: [GNUnet-SVN] [taler-landing] branch master updated: add bootstrap script
Date: Fri, 11 Oct 2019 20:25:24 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository landing.

The following commit(s) were added to refs/heads/master by this push:
     new b7c30fd  add bootstrap script
b7c30fd is described below

commit b7c30fdbf99628e351273dc4c3a734190d19e7ba
Author: Florian Dold <address@hidden>
AuthorDate: Fri Oct 11 23:54:55 2019 +0530

    add bootstrap script
---
 README    |  4 +---
 bootstrap | 11 +++++++++++
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/README b/README
index cac5295..c9b048e 100644
--- a/README
+++ b/README
@@ -15,8 +15,6 @@ Building
 
 For building run:
 
-  git submodule init
-  git submodule update --remote
-  AUTOMAKE="automake --foreign" autoreconf -fiv
+  ./bootstrap
   ./configure
   make
diff --git a/bootstrap b/bootstrap
new file mode 100755
index 0000000..c83fd8c
--- /dev/null
+++ b/bootstrap
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+set -eu
+
+if ! git --version >/dev/null; then
+  echo "git not installed"
+  exit 1
+fi
+
+git submodule update --init
+AUTOMAKE="automake --foreign" autoreconf -fiv

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]