build: Run configure in autogen.sh
This commit is contained in:
parent
38c20cd867
commit
1c72d8f063
23
autogen.sh
23
autogen.sh
@ -6,8 +6,31 @@
|
|||||||
# can now be used...
|
# can now be used...
|
||||||
#
|
#
|
||||||
|
|
||||||
|
srcdir=`dirname $0`
|
||||||
|
test -z "$srcdir" && srcdir=.
|
||||||
|
ORIGDIR=`pwd`
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
|
cd $srcdir
|
||||||
|
|
||||||
aclocal -I m4macros \
|
aclocal -I m4macros \
|
||||||
&& autoheader \
|
&& autoheader \
|
||||||
&& automake --gnu --add-missing \
|
&& automake --gnu --add-missing \
|
||||||
&& autoconf
|
&& autoconf
|
||||||
|
|
||||||
|
cd $ORIGDIR
|
||||||
|
|
||||||
|
set -
|
||||||
|
|
||||||
|
echo $srcdir/configure --enable-maintainer-mode "$@"
|
||||||
|
$srcdir/configure --enable-maintainer-mode "$@"
|
||||||
|
RC=$?
|
||||||
|
if test $RC -ne 0; then
|
||||||
|
echo
|
||||||
|
echo "Configure failed or did not finish!"
|
||||||
|
exit $RC
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo "Now type 'make' to compile Tinyproxy."
|
||||||
|
Loading…
Reference in New Issue
Block a user