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:
parent
446855bb4a
commit
3c087a9aec
1 changed files with 13 additions and 0 deletions
13
autogen.sh
13
autogen.sh
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue