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

cd $HOME/libmicrohttpd/
git clean -fdx

# like "git pull", but robust against force pushes
# and local changes
git fetch
git reset --hard FETCH_HEAD

./bootstrap
./configure --prefix=$HOME/local
make
make install