summaryrefslogtreecommitdiff
path: root/taler-build/update_gnunet.sh
diff options
context:
space:
mode:
Diffstat (limited to 'taler-build/update_gnunet.sh')
-rwxr-xr-xtaler-build/update_gnunet.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/taler-build/update_gnunet.sh b/taler-build/update_gnunet.sh
deleted file mode 100755
index 3e89e07..0000000
--- a/taler-build/update_gnunet.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-set -eu
-
-cd $HOME/gnunet/
-git clean -fdx
-
-git fetch
-# reset to updated upstream branch, but only if we're tracking a branch
-branch=$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || echo HEAD)
-git reset --hard "$branch"
-
-./bootstrap
-./configure --prefix=$HOME/local \
- --enable-logging=verbose \
- --with-libgnurl=$HOME/local \
- --with-microhttpd=$HOME/local \
- --disable-documentation
-
-make install -j1