summaryrefslogtreecommitdiff
path: root/taler-build/update_merchant.sh
blob: fab648ff7478eeeee35acb74a3afcb7fe32f3ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -eu

cd $HOME/merchant/
git pull
git submodule update --init
git clean -fdx
./bootstrap
./configure CFLAGS='-ggdb -O0' \
  --prefix=$HOME/local --with-gnunet=$HOME/local \
  --with-mint=$HOME/local \
  --with-microhttpd=$HOME/local \
  --enable-logging=verbose
make
make install