blob: 2254a8f841506194e497880ec4b8ab4a3c30ebb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
set -e
# Generate version information from git release tag
[ -f ./scripts/git-version ] && ./scripts/git-version > VERSION
# To satisfy automake
touch ChangeLog
# Bootstrap autotools
autoreconf --verbose --force --install
rm -rf autom4te.cache
rm -f config.h.in~
|