X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=autogen.sh;h=c584309fff8a8ab9ea6d8f0c668d9f2a5f1178ab;hb=0aa751937455c4af4e49ccf6ba469c0b4ca8a4d0;hp=b833a3083e3463108240b7f81905e03e37745df5;hpb=739ea144d276ca475730d0c928ed9fd82f3cba03;p=nagiosplug.git diff --git a/autogen.sh b/autogen.sh index b833a30..c584309 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,31 +1,9 @@ #!/bin/sh # -# autogen.sh glue for CMU Cyrus IMAP -# $Id$ -# # Requires: automake, autoconf, dpkg-dev # set -e -MAKE=$(which gnumake) -if test ! -x "$MAKE" ; then MAKE=$(which gmake) ; fi -if test ! -x "$MAKE" ; then MAKE=$(which make) ; fi -HAVE_GNU_MAKE=$($MAKE --version|grep -c "Free Software Foundation") - -if test "$HAVE_GNU_MAKE" != "1"; then - echo Could not find GNU make on this system, can not proceed with build. - exit 1 -else - echo Found GNU Make at $MAKE ... good. -fi - -# Refresh GNU autotools toolchain. -for i in config.guess config.sub missing install-sh mkinstalldirs depcomp; do - test -r /usr/share/automake/${i} && { - rm -f ${i} - } -done - -tools/setup +./tools/setup # For the Debian build test -d debian && {