diff options
author | Thomas Thurman <tthurman@gnome.org> | 2008-09-26 04:05:31 +0000 |
---|---|---|
committer | Thomas James Alexander Thurman <tthurman@src.gnome.org> | 2008-09-26 04:05:31 +0000 |
commit | 0ee05e6617f5068d4b2ae36669d7336d8d72e26e (patch) | |
tree | 84f6a2d51b9f98074686e2ed64b2e84cb7b4368b /autogen.sh | |
parent | c5d86fae01856017dcdf67facd1129524005dd77 (diff) | |
download | mutter-0ee05e6617f5068d4b2ae36669d7336d8d72e26e.tar.gz |
not all versions of /bin/sh can handle this script, so specify one. Also
2008-09-26 Thomas Thurman <tthurman@gnome.org>
* autogen.sh: not all versions of /bin/sh can handle this script,
so specify one. Also update the error message because we don't
use CVS these days.
svn path=/trunk/; revision=3927
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index b6b4cc76f..1159af273 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Run this to generate all the initial makefiles, etc. srcdir=`dirname $0` @@ -15,7 +15,8 @@ REQUIRED_AUTOMAKE_VERSION=1.10 } which gnome-autogen.sh || { - echo "You need to install gnome-common from the GNOME CVS" + echo "You need to install gnome-common from GNOME Subversion (or from" + echo "your distribution's package manager)." exit 1 } USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh |