blob: 2df3f21a2f27d0ae67ec3bce25f10aaa93d022b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
echo "Generating build information using autopoint, aclocal, autoheader, automake, and autoconf."
echo
# Regerate configuration files
gettextize -f --no-changelog
autopoint
aclocal
autoheader
automake --gnu --add-missing --copy
autoconf
echo
echo "Now you are ready to run ./configure"
|