[Nagiosplug-checkins] CVS: nagiosplug/tools setup,1.8,1.9

Karl DeBisschop kdebisschop at users.sourceforge.net
Wed Jul 2 20:24:11 CEST 2003


Update of /cvsroot/nagiosplug/nagiosplug/tools
In directory sc8-pr-cvs1:/tmp/cvs-serv26111/tools

Modified Files:
	setup 
Log Message:
mv GNU toolchain check into tools/setup

Index: setup
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/tools/setup,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** setup	27 Jun 2003 10:30:47 -0000	1.8
--- setup	3 Jul 2003 03:23:14 -0000	1.9
***************
*** 1,8 ****
! #! /bin/sh
  
  aclocal -I lib
- autoconf
  autoheader
  automake --add-missing --copy
  
  if [ -f debian/rules ] ; then
--- 1,35 ----
! #!/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
  autoheader
  automake --add-missing --copy
+ autoconf
  
  if [ -f debian/rules ] ; then





More information about the Commits mailing list