[Xfce4-commits] <xfce4-dev-tools:master> Never use xdt-autogen in autogen.sh.
Nick Schermer
noreply at xfce.org
Sat Dec 10 12:30:01 CET 2011
Updating branch refs/heads/master
to 32eb2f4a298a77a1fcdaf3a3977c2abf1d63c26f (commit)
from dfd0dc48ef2d0dd8c3c771ccf69a4476534d6e34 (commit)
commit 32eb2f4a298a77a1fcdaf3a3977c2abf1d63c26f
Author: Nick Schermer <nick at xfce.org>
Date: Sat Dec 10 12:28:05 2011 +0100
Never use xdt-autogen in autogen.sh.
autogen.sh | 21 +++++++++------------
1 files changed, 9 insertions(+), 12 deletions(-)
diff --git a/autogen.sh b/autogen.sh
index eae2da1..b913c76 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -29,19 +29,16 @@ if test "x$revision" = "x"; then
fi
sed -e "s/@REVISION@/${revision}/g" < "configure.in.in" > "configure.in"
-if (type xdt-autogen) >/dev/null 2>&1; then
- exec xdt-autogen "$@"
-else
- (aclocal &&
- automake --add-missing --copy --gnu &&
- autoconf) || exit 1
+(libtoolize &&
+ aclocal &&
+ automake --add-missing --copy --gnu &&
+ autoconf) || exit 1
- if test x"${NOCONFIGURE}" = x""; then
- (./configure --enable-maintainer-mode "$@" &&
- echo "Now type \"make\" to build.") || exit 1
- else
- echo "Skipping configure process."
- fi
+if test x"${NOCONFIGURE}" = x""; then
+ (./configure --enable-maintainer-mode "$@" &&
+ echo "Now type \"make\" to build.") || exit 1
+else
+ echo "Skipping configure process."
fi
# vi:set ts=2 sw=2 et ai:
More information about the Xfce4-commits
mailing list