Procházet zdrojové kódy

mv GNU toolchain check into tools/setup

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@583 f882894a-f735-0410-b71e-b25c423dba1c
Karl DeBisschop před 22 roky
rodič
revize
c767ee0645
2 změnil soubory, kde provedl 30 přidání a 23 odebrání
  1. 1 21
      autogen.sh
  2. 29 2
      tools/setup

+ 1 - 21
autogen.sh

@@ -1,31 +1,11 @@
 #!/bin/sh
 #!/bin/sh
 #
 #
-# autogen.sh glue for CMU Cyrus IMAP
 # $Id$
 # $Id$
 #
 #
 # Requires: automake, autoconf, dpkg-dev
 # Requires: automake, autoconf, dpkg-dev
 # set -e
 # 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
 # For the Debian build
 test -d debian && {
 test -d debian && {

+ 29 - 2
tools/setup

@@ -1,9 +1,36 @@
-#! /bin/sh
+#!/bin/sh
+#
+# autogen.sh glue from 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 ; do
+	test -r /usr/share/automake/${i} && {
+		rm -f ${i}
+		cp /usr/share/automake/${i} .
+	}
+	chmod 755 ${i}
+done
 
 
 aclocal -I lib
 aclocal -I lib
-autoconf
 autoheader
 autoheader
 automake --add-missing --copy
 automake --add-missing --copy
+autoconf
 
 
 if [ -f debian/rules ] ; then
 if [ -f debian/rules ] ; then
   chmod +x debian/rules
   chmod +x debian/rules