blob: 373e5f5ea24aeec02ec7de6d7e0ec7a3a98186f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
if ! git --version >/dev/null; then
echo "git not installed"
exit 1
fi
echo "$0: Updating submodules"
echo | git submodule update --init
echo "$0: Running autoreconf"
autoreconf -if
|