capture information in changelog about bugs that this upload should close
[debian/amanda] / autogen
1 #! /bin/sh
2 # rebuilds files generated by autoconf&automake.
3 # autoconf 2.13 and automake 1.4 or newer are required
4 # arguments are forwarded to the autoreconf script.
5
6 cd `dirname $0`
7
8 touch config/config.h.in
9
10 if test x`ls -1t acinclude.m4 2>/dev/null \
11             config/gnulib.m4i config/acinclude.m4i config/libtool.m4i |
12           sed 1q` != x"acinclude.m4"; then
13     rm -f acinclude.m4
14     # keep libtool.m4i first here, as it has a "serial number" comment that it wants
15     # first in the file
16     cat config/libtool.m4i config/gnulib.m4i config/acinclude.m4i > acinclude.m4
17 fi
18
19 autoreconf --warning=syntax --warning=no-portability --force ${1+"$@"} || exit 1