1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-23 16:24:02 +00:00

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

View file

@ -1,4 +1,10 @@
#!/bin/sh #!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
PROJECT=Transmission
GETTEXTIZE="glib-gettextize" GETTEXTIZE="glib-gettextize"
$GETTEXTIZE --version < /dev/null > /dev/null 2>&1 $GETTEXTIZE --version < /dev/null > /dev/null 2>&1
@ -26,3 +32,10 @@ if test "$GETTEXTIZE"; then
intltoolize --copy --force --automake intltoolize --copy --force --automake
fi 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