mirror of
https://github.com/transmission/transmission
synced 2024-12-23 00:04:06 +00:00
autogen.sh cleanups by Triskelios
This commit is contained in:
parent
9694ed9fe0
commit
d29ad812f4
1 changed files with 6 additions and 3 deletions
|
@ -3,7 +3,7 @@ srcdir=`dirname $0`
|
||||||
test -z "$srcdir" && srcdir=.
|
test -z "$srcdir" && srcdir=.
|
||||||
|
|
||||||
ORIGDIR=`pwd`
|
ORIGDIR=`pwd`
|
||||||
cd $srcdir
|
cd "$srcdir"
|
||||||
PROJECT=Transmission
|
PROJECT=Transmission
|
||||||
|
|
||||||
GETTEXTIZE="glib-gettextize"
|
GETTEXTIZE="glib-gettextize"
|
||||||
|
@ -13,7 +13,10 @@ if test $? -ne 0; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
LIBTOOLIZE=libtoolize
|
LIBTOOLIZE=libtoolize
|
||||||
if ! libtoolize --help >/dev/null 2>&1 && glibtoolize --help >/dev/null 2>&1
|
if libtoolize --help >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
:
|
||||||
|
elif glibtoolize --help >/dev/null 2>&1
|
||||||
then
|
then
|
||||||
LIBTOOLIZE=glibtoolize
|
LIBTOOLIZE=glibtoolize
|
||||||
fi
|
fi
|
||||||
|
@ -32,7 +35,7 @@ if test "$GETTEXTIZE"; then
|
||||||
intltoolize --copy --force --automake
|
intltoolize --copy --force --automake
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd $ORIGDIR || exit $?
|
cd "$ORIGDIR" || exit $?
|
||||||
|
|
||||||
if test -z "$AUTOGEN_SUBDIR_MODE"; then
|
if test -z "$AUTOGEN_SUBDIR_MODE"; then
|
||||||
echo Running $srcdir/configure --enable-maintainer-mode "$@"
|
echo Running $srcdir/configure --enable-maintainer-mode "$@"
|
||||||
|
|
Loading…
Reference in a new issue