From fbc1410e57b32945d06d3eafb7badc97dc3f26b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jard=C3=B3n?= Date: Wed, 28 Mar 2012 19:34:14 +0100 Subject: Use autoreconf instead gnome-common --- autogen.sh | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/autogen.sh b/autogen.sh index ce540b5..302e578 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,21 +1,19 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. -srcdir=`dirname $0` -test -z "$srcdir" && srcdir=. +test -n "$srcdir" || srcdir=`dirname "$0"` +test -n "$srcdir" || srcdir=. -PKG_NAME="intltool" -REQUIRED_AUTOMAKE_VERSION="1.6" +olddir=`pwd` +cd $srcdir -(test -f $srcdir/intltoolize.in) || { - echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" - echo " top-level $PKG_NAME directory" - exit 1 -} +AUTORECONF=`which autoreconf` +if test -z $AUTORECONF; then + echo "*** No autoreconf found, please intall it ***" + exit 1 +fi -which gnome-autogen.sh || { - echo "You need to install gnome-common from the GNOME CVS" - exit 1 -} +autoreconf --force --install --verbose -USE_GNOME2_MACROS=1 . gnome-autogen.sh +cd $olddir +test -n "$NOCONFIGURE" || "$srcdir/configure" "$@" -- cgit v1.2.1