mirror of https://github.com/GNOME/gimp.git
bail out if one of the required tools is not found before proceeding to
2002-03-27 Sven Neumann <sven@gimp.org> * autogen.sh: bail out if one of the required tools is not found before proceeding to the version checks.
This commit is contained in:
parent
ff3e8be76d
commit
3439f158ab
|
@ -1,3 +1,8 @@
|
|||
2002-03-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* autogen.sh: bail out if one of the required tools is not found
|
||||
before proceeding to the version checks.
|
||||
|
||||
2002-03-26 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* tools/gimp-mkenums:`merged glib-mkenums changes (#74431).
|
||||
|
|
|
@ -6,7 +6,7 @@ test -z "$srcdir" && srcdir=.
|
|||
|
||||
ORIGDIR=`pwd`
|
||||
cd $srcdir
|
||||
PROJECT=GIMP
|
||||
PROJECT="The GIMP"
|
||||
TEST_TYPE=-d
|
||||
FILE=plug-ins
|
||||
|
||||
|
@ -48,6 +48,10 @@ DIE=0
|
|||
DIE=1
|
||||
}
|
||||
|
||||
if test "$DIE" -eq 1; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "I am testing that you have the required versions of libtool, autoconf,"
|
||||
echo "automake, glib-gettextize and intltoolize. This test is not foolproof,"
|
||||
echo "so if anything goes wrong, see the file HACKING for more information..."
|
||||
|
|
Loading…
Reference in New Issue