From: Stefano Lattarini Date: Wed, 8 Aug 2012 17:02:13 +0000 (+0200) Subject: tests: remove an obsolete test script X-Git-Tag: v1.12.3~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3e7ee629804d4d3b3338afd1cd54cab92903f79;p=thirdparty%2Fautomake.git tests: remove an obsolete test script * t/scripts.sh: This: it used to check that the 'AC_PROG_INSTALL' macro was not uselessly required, but today that macro is AC_REQUIRE'd by 'AM_INIT_AUTOMAKE' anyway, so that the test is no more significant. * t/list-of-tests.mk: Adjust. Signed-off-by: Stefano Lattarini --- diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index d193adb47..13a71fb6b 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -963,7 +963,6 @@ t/self-check-seq.tap \ t/self-check-is-blocked-signal.tap \ t/self-check-unindent.tap \ t/sanity.sh \ -t/scripts.sh \ t/seenc.sh \ t/silent.sh \ t/silent2.sh \ diff --git a/t/scripts.sh b/t/scripts.sh deleted file mode 100755 index 996cc9a2f..000000000 --- a/t/scripts.sh +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/sh -# Copyright (C) 1996-2012 Free Software Foundation, Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -# Test for bug reported by Jim Meyering. -# AC_PROG_INSTALL was required when only noinst_SCRIPTS was defined. - -. ./defs || exit 1 - -cat > Makefile.am << 'END' -noinst_SCRIPTS = foo -END - -$ACLOCAL -$AUTOMAKE