]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* tests/defs.in: Substitute aclocaldir instead of running
authorAlexandre Duret-Lutz <adl@gnu.org>
Sun, 5 Jan 2003 22:41:33 +0000 (22:41 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Sun, 5 Jan 2003 22:41:33 +0000 (22:41 +0000)
the installed aclocal.  Otherwise Libtool and Gettext
tests get skipped when aclocal doesn't preexist.
Reported by Imacat.
* tests/listval.test, tests/suffix2.test: Remove pointless -I
argument to aclocal.

ChangeLog
ChangeLog.2001
THANKS
tests/defs.in
tests/listval.test
tests/suffix2.test

index 50b0e2606666a900956b1b5fc09fbf974601afad..3e8b6caa1b9afa383b718144d88af3e78c6f601a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2003-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
+
+       * tests/defs.in: Substitute aclocaldir instead of running
+       the installed aclocal.  Otherwise Libtool and Gettext
+       tests get skipped when aclocal doesn't preexist.
+       Reported by Imacat.
+       * tests/listval.test, tests/suffix2.test: Remove pointless -I
+       argument to aclocal.
+
 2002-12-31  Alexandre Duret-Lutz  <adl@gnu.org>
 
        * lib/Automake/ChannelDefs.pm: New file.
 
 -----
 
-Copyright (C) 2002 Free Software Foundation, Inc.
+Copyright (C) 2002, 2003  Free Software Foundation, Inc.
 
 This file is part of GNU Automake.
 
index 16d3265500c4428fee7f512f5413af4bfa285820..e0dc01e3c260a30ccc3e8ca3d147621611a720bb 100644 (file)
 
 2001-10-21  Akim Demaille  <akim@epita.fr>
 
-       * tests/defs (ACLOCAL): Point to the installed aclocaldir is
+       * tests/defs (ACLOCAL): Point to the installed aclocaldir if
        libtool is required.
        * tests/lex.test: Run AC_INIT once.
        * tests/ldflags.test, tests/listval.test, tests/suffix2.test:
        Libtool is required.
-       * tests/header.test: Built a correct configure.in.
+       * tests/header.test: Build a correct configure.in.
        * tests/defun2.test (configure.in): Be a bit respectful with
        Autoconf, close the macro invocations.
        * tests/confdeps.test: Even when not using aclocal, aclocal.m4
 
 -----
 
-Copyright 2001 Free Software Foundation, Inc.
+Copyright (C) 2001, 2003  Free Software Foundation, Inc.
 
 This file is part of GNU Automake.
 
diff --git a/THANKS b/THANKS
index d4dc904b385fa90336a768ea1bba2910d2ea9f7b..78754ee522b79d7b70d66b0e47b75159d5a44bf8 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -75,6 +75,7 @@ H.Merijn Brand                h.m.brand@hccnet.nl
 Harlan Stenn           Harlan.Stenn@pfcs.com
 Henrik Frystyk Nielsen frystyk@w3.org
 Ian Lance Taylor       ian@cygnus.com
+Imacat                 imacat@mail.imacat.idv.tw
 Inoue                  inoue@ainet.or.jp
 James Henstridge       james@daa.com.au
 James Youngman         jay@gnu.org
index cc694d50f15539e598a2efdbf7592485267d24fa..35d42d2bb8d308718fabdc22ea2da0f4577da68b 100644 (file)
@@ -1,5 +1,5 @@
 # -*- shell-script -*-
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
 # Free Software Foundation, Inc.
 #
 # This file is part of GNU Automake.
@@ -200,10 +200,10 @@ fi
 
 # We might need extra macros, e.g., from Libtool or Gettext.
 # Find them on the system.
-# Use `-I $srcdir/../m4' in addition to `--acdir', because the
+# Use `-I $srcdir/../m4' in addition to `--acdir=$srcdir/../m4', because the
 # other `-I' directories added for libtool and gettext might contain
 # files from an old version of Automake that we don't want to use.
-aclocaldir=`(aclocal --print-ac-dir) 2>/dev/null`
+aclocaldir='@prefix@/share/aclocal'
 extra_includes=""
 if [ -f $aclocaldir/dirlist ] ; then
    extra_includes=`(tmp_inc=""
index ef402f56b5fe81724b6f31b50650a886ee46ba41..0def90225a663770e3aef49a5c6100f8371cec0a 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 2001, 2002  Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003  Free Software Foundation, Inc.
 #
 # This file is part of GNU Automake.
 #
@@ -41,5 +41,5 @@ END
 : > config.guess
 : > config.sub
 
-$ACLOCAL -I $aclocaldir || exit 1
+$ACLOCAL || exit 1
 $AUTOMAKE
index 043d8e0218a9f935d4c646a17bd98a357628b655..5d1b7f47b026bab89eca5cd2ce9e77b394e5820d 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# Copyright (C) 1999, 2001, 2002  Free Software Foundation, Inc.
+# Copyright (C) 1999, 2001, 2002, 2003  Free Software Foundation, Inc.
 #
 # This file is part of GNU Automake.
 #
@@ -46,7 +46,7 @@ END
 
 set -e
 
-$ACLOCAL -I $aclocaldir || exit 1
+$ACLOCAL || exit 1
 $AUTOMAKE -a
 
 grep -c '^\.c\.o:' Makefile.in   | grep '^1$'