diff options
author | Werner Koch <[email protected]> | 1998-10-18 15:21:22 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-10-18 15:21:22 +0000 |
commit | 6e1629686442f357146cce4052a5fa4afd59d232 (patch) | |
tree | c6c7a5df241142ecd0797702a7bf6c3bfc8b6a33 /scripts/autogen.sh | |
parent | . (diff) | |
download | gnupg-0-4-2.tar.gz gnupg-0-4-2.zip |
Snapshot release 0.4.2V0-4-2
Diffstat (limited to 'scripts/autogen.sh')
-rwxr-xr-x | scripts/autogen.sh | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/scripts/autogen.sh b/scripts/autogen.sh index 215ef072d..17905a132 100755 --- a/scripts/autogen.sh +++ b/scripts/autogen.sh @@ -2,34 +2,32 @@ # Run this to generate all the initial makefiles, etc. PGM=GnuPG - DIE=no -NO_AUTOMAKE=no -(autoconf --version) < /dev/null > /dev/null 2>&1 || { +if (autoconf --version) < /dev/null > /dev/null 2>&1 ; then + : +else echo echo "**Error**: You must have "\`autoconf\'" installed to compile $PGM." echo ' (version 2.10 or newer is required' - DIE=yes -} - -(automake --version) < /dev/null > /dev/null 2>&1 || { - echo - echo "**Error**: You must have "\`automake\'" installed to compile $PGM." - echo ' (version 1.3 or newer is required)' - DIE=yes - NO_AUTOMAKE=yes -} - + DIE="yes" +fi -# if no automake, don't bother testing for aclocal -test "$NO_AUTOMAKE" = "no" \ - || (aclocal --version) < /dev/null > /dev/null 2>&1 || { +if (automake --version) < /dev/null > /dev/null 2>&1 ; then + if (aclocal --version) < /dev/null > /dev/null 2>&1; then + : + else echo echo "**Error**: Missing "\`aclocal\'". The version of "\`automake\' echo " installed doesn't appear recent enough." - DIE=yes -} + DIE="yes" + fi +else + echo + echo "**Error**: You must have "\`automake\'" installed to compile $PGM." + echo ' (version 1.3 or newer is required)' + DIE="yes" +fi if test "$DIE" = "yes"; then exit 1 |