[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
FYI: adjust automake test suite for CVS libtoolize
From: |
Alexandre Duret-Lutz |
Subject: |
FYI: adjust automake test suite for CVS libtoolize |
Date: |
Fri, 02 Jan 2004 20:25:07 +0100 |
User-agent: |
Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3.50 (gnu/linux) |
The new default behavior of CVS libtoolize is to not install
config.sub and config.guess (contrary to what libtoolize 1.5
did). This breaks four tests in our test suite.
I'm installing the following fix on HEAD and branch-1-8.
2004-01-02 Alexandre Duret-Lutz <address@hidden>
* tests/libtool5.test, tests/ltcond.test, tests/ltcond2.test,
* tests/ltconv.test: Run automake with --add-missing, because
the CVS version of libtoolize no longer install config.sub and
config.guess by default.
Index: tests/libtool5.test
===================================================================
RCS file: /cvs/automake/automake/tests/libtool5.test,v
retrieving revision 1.3
diff -u -r1.3 libtool5.test
--- tests/libtool5.test 14 Nov 2003 21:25:58 -0000 1.3
+++ tests/libtool5.test 2 Jan 2004 19:17:12 -0000
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright (C) 2002 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2004 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -46,4 +46,4 @@
libtoolize
$ACLOCAL
-$AUTOMAKE
+$AUTOMAKE --add-missing
Index: tests/ltcond.test
===================================================================
RCS file: /cvs/automake/automake/tests/ltcond.test,v
retrieving revision 1.2
diff -u -r1.2 ltcond.test
--- tests/ltcond.test 6 Aug 2003 23:36:52 -0000 1.2
+++ tests/ltcond.test 2 Jan 2004 19:17:12 -0000
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright (C) 2003 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -64,7 +64,7 @@
libtoolize
$ACLOCAL
$AUTOCONF
-$AUTOMAKE
+$AUTOMAKE --add-missing
# Install libraries in lib/, and the rest in empty/.
# (in fact there is no "rest", so as the name imply empty/ is
Index: tests/ltcond2.test
===================================================================
RCS file: /cvs/automake/automake/tests/ltcond2.test,v
retrieving revision 1.1
diff -u -r1.1 ltcond2.test
--- tests/ltcond2.test 31 Jul 2003 20:28:00 -0000 1.1
+++ tests/ltcond2.test 2 Jan 2004 19:17:12 -0000
@@ -1,5 +1,5 @@
#! /bin/sh
-# Copyright (C) 2003 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -75,7 +75,7 @@
libtoolize
$ACLOCAL
$AUTOCONF
-$AUTOMAKE
+$AUTOMAKE --add-missing
./configure
$MAKE check
test -f check-ok
Index: tests/ltconv.test
===================================================================
RCS file: /cvs/automake/automake/tests/ltconv.test,v
retrieving revision 1.2
diff -u -r1.2 ltconv.test
--- tests/ltconv.test 5 Aug 2003 19:44:00 -0000 1.2
+++ tests/ltconv.test 2 Jan 2004 19:17:12 -0000
@@ -1,5 +1,5 @@
#!/bin/sh
-# Copyright (C) 2003 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2004 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
@@ -113,7 +113,7 @@
libtoolize
$ACLOCAL
$AUTOCONF
-$AUTOMAKE
+$AUTOMAKE --add-missing
# Install libraries in lib/, programs in bin/, and the rest in empty/.
# (in fact there is no "rest", so as the name imply empty/ is
--
Alexandre Duret-Lutz
- FYI: adjust automake test suite for CVS libtoolize,
Alexandre Duret-Lutz <=