From 1cedef9692d826d909db542445e8216f1f8cf656 Mon Sep 17 00:00:00 2001 From: sam Date: Fri, 23 Feb 2007 12:55:38 +0000 Subject: [PATCH] * Support automake 1.10. git-svn-id: file:///srv/caca.zoy.org/var/lib/svn/cacatris/trunk@1756 92316355-f0b4-4df1-b90c-862c8a59935f --- bootstrap | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/bootstrap b/bootstrap index 454474e..87deb20 100755 --- a/bootstrap +++ b/bootstrap @@ -3,9 +3,10 @@ # bootstrap: the ultimate bootstrap/autogen.sh script for autotools projects # Copyright (c) 2002, 2003, 2004, 2005, 2006 Sam Hocevar # -# This program is free software; you can redistribute it and/or -# modify it under the terms of the Do What The Fuck You Want To -# Public License, Version 2, as published by Sam Hocevar. See +# This program is free software. It comes without any warranty, to +# the extent permitted by applicable law. You can redistribute it +# and/or modify it under the terms of the Do What The Fuck You Want +# To Public License, Version 2, as published by Sam Hocevar. See # http://sam.zoy.org/wtfpl/COPYING for more details. # # The latest version of this script can be found at the following place: @@ -25,14 +26,14 @@ else fi # Check for needed features -auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *( *\([^ )]*\).*/\1/p' $conffile`" +auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *([\[ ]*\([^\] )]*\).*/\1/p' $conffile`" libtool="`grep -q '^[ \t]*A._PROG_LIBTOOL' $conffile && echo yes || echo no`" header="`grep -q '^[ \t]*A._CONFIG_HEADER' $conffile && echo yes || echo no`" aclocalflags="`sed -ne 's/^[ \t]*ACLOCAL_AMFLAGS[ \t]*=//p' Makefile.am`" # Check for automake amvers="no" -for v in "-1.9" "19" "-1.8" "18" "-1.7" "17" "-1.6" "16" "-1.5" "15"; do +for v in "-1.10" "110" "-1.9" "19" "-1.8" "18" "-1.7" "17" "-1.6" "16" "-1.5" "15"; do if automake${v} --version >/dev/null 2>&1; then amvers="${v}" break @@ -94,7 +95,7 @@ if test -n "$auxdir"; then if test ! -d "$auxdir"; then mkdir "$auxdir" fi - aclocalflags="${aclocalflags} -I $auxdir" + aclocalflags="${aclocalflags} -I $auxdir -I ." fi # Explain what we are doing from now