invoke configure at the end of autogen

This commit is contained in:
Charles Kerr 2008-02-12 17:14:30 +00:00
parent 446855bb4a
commit 3c087a9aec
1 changed files with 13 additions and 0 deletions

View File

@ -1,4 +1,10 @@
#!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
PROJECT=Transmission
GETTEXTIZE="glib-gettextize"
$GETTEXTIZE --version < /dev/null > /dev/null 2>&1
@ -26,3 +32,10 @@ if test "$GETTEXTIZE"; then
intltoolize --copy --force --automake
fi
cd $ORIGDIR || exit $?
if test -z "$AUTOGEN_SUBDIR_MODE"; then
$srcdir/configure --enable-maintainer-mode $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
echo
echo "Now type 'make' to compile $PROJECT."
fi