diff options
author | Vincent Untz <vuntz@gnome.org> | 2009-04-24 03:24:38 +0200 |
---|---|---|
committer | Vincent Untz <vuntz@gnome.org> | 2009-04-24 03:24:38 +0200 |
commit | 0363bbc43b716862304047a27462027cd87a2933 (patch) | |
tree | e8855ba66f6930f855b671a6122fdd3e50cd7ece | |
parent | 8ad16d0bf6c6fd25810e8abd901410a57070552e (diff) | |
download | gnome-desktop-0363bbc43b716862304047a27462027cd87a2933.tar.gz |
Make autogen.sh more modern.
-rwxr-xr-x | autogen.sh | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -4,19 +4,18 @@ srcdir=`dirname $0` test -z "$srcdir" && srcdir=. -PKG_NAME="GNOME Core Desktop" +PKG_NAME="GNOME Desktop Library" +REQUIRED_AUTOMAKE_VERSION=1.9 (test -f $srcdir/configure.in \ - && test -f $srcdir/HACKING \ && test -d $srcdir/libgnome-desktop) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" - echo " top-level gnome directory" + echo " top-level $PKG_NAME directory" exit 1 } - which gnome-autogen.sh || { - echo "You need to install gnome-common from the GNOME SVN" + echo "You need to install gnome-common." exit 1 } @@ -27,4 +26,4 @@ if test ! -f gnome-about/foundation-members.list; then touch gnome-about/foundation-members.list fi -REQUIRED_AUTOMAKE_VERSION=1.9 . gnome-autogen.sh +. gnome-autogen.sh |