View | Details | Raw Unified | Return to ticket 1141
Collapse All | Expand All

(-)a/autogen.sh (-6 / +6 lines)
Lines 90-101 rm -f config.h.in Link Here
90
90
91
set -x
91
set -x
92
rm -fr autom4te*.cache
92
rm -fr autom4te*.cache
93
aclocal -I auxdir $ACLOCAL_FLAGS || exit 1
93
${ACLOCAL:-aclocal} -I auxdir $ACLOCAL_FLAGS || exit 1
94
libtoolize --automake --copy --force || exit 1
94
${LIBTOOLIZE:-libtoolize} --automake --copy --force || exit 1
95
autoheader || exit 1
95
${AUTOHEADER:-autoheader} || exit 1
96
automake --add-missing --copy --force-missing || exit 1
96
${AUTOMAKE:-automake} --add-missing --copy --force-missing || exit 1
97
#autoconf --force --warnings=all || exit 1
97
#${AUTOCONF:-autoconf} --force --warnings=all || exit 1
98
autoconf --force --warnings=no-obsolete || exit 1
98
${AUTOCONF:-autoconf} --force --warnings=no-obsolete || exit 1
99
set +x
99
set +x
100
100
101
if [ -e config.status ]; then
101
if [ -e config.status ]; then

Return to ticket 1141