From 73abd6cb02d7b42a4ef759aa07b57449faa2bd93 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Fri, 21 Jun 2013 14:02:41 +0200 Subject: post-release: micro version bump (1.14a) * configure.ac: Bump version: 1.14 -> 1.14a * m4/amversion.m4: Likewise (auto-updated by "make bootstrap"). Signed-off-by: Stefano Lattarini --- configure.ac | 2 +- m4/amversion.m4 | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index b7fcd7890..7c470ed4e 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ # along with this program. If not, see . AC_PREREQ([2.69]) -AC_INIT([GNU Automake], [1.14], [bug-automake@gnu.org]) +AC_INIT([GNU Automake], [1.14a], [bug-automake@gnu.org]) AC_CONFIG_SRCDIR([bin/automake.in]) AC_CONFIG_AUX_DIR([lib]) diff --git a/m4/amversion.m4 b/m4/amversion.m4 index 02bb43621..9548bee73 100644 --- a/m4/amversion.m4 +++ b/m4/amversion.m4 @@ -12,10 +12,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.14' +[am__api_version='1.14a' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.14], [], +m4_if([$1], [1.14a], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -31,7 +31,7 @@ m4_define([_AM_AUTOCONF_VERSION], []) # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.14])dnl +[AM_AUTOMAKE_VERSION([1.14a])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) -- cgit v1.2.1 From 1b61da332734264141cb7500ee8c68d0927c72fa Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 30 Oct 2013 22:44:34 +0000 Subject: install-sh: assume 'dirname' is available and working correctly Really, we no longer care about hosts so outdated/broken to miss fundamental utilities like basename or dirname. * lib/install.sh: Adjust. * NEWS, THANKS: Update. Suggested-by: Philipp A. Hartmann Signed-off-by: Stefano Lattarini --- NEWS | 9 +++++++++ THANKS | 1 + lib/install-sh | 30 ++---------------------------- 3 files changed, 12 insertions(+), 28 deletions(-) diff --git a/NEWS b/NEWS index aaec7c0da..50f1e7fe1 100644 --- a/NEWS +++ b/NEWS @@ -104,6 +104,15 @@ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +New in 1.15: + +* Cleanups and modernizations: + + - The install-sh script now unconditionally assumes that a working + 'dirname' program is available. + +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + New in 1.14.1: * Bugs fixed: diff --git a/THANKS b/THANKS index 6be803e16..e4f70f322 100644 --- a/THANKS +++ b/THANKS @@ -328,6 +328,7 @@ Phil Edwards phil@jaj.com Phil Nelson phil@cs.wwu.edu Philip Fong pwlfong@users.sourceforge.net Philip S Tellis philip@ncst.ernet.in +Philipp A. Hartmann philipp.hartmann@offis.de Пухальский Юрий Андреевич pooh@cryptopro.ru Quentin Glidic sardemff7+gnu@sardemff7.net Rainer Orth ro@techfak.uni-bielefeld.de diff --git a/lib/install-sh b/lib/install-sh index 377bb8687..f950f30c2 100755 --- a/lib/install-sh +++ b/lib/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2011-11-20.07; # UTC +scriptversion=2013-10-30.23; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -277,33 +277,7 @@ do dst=$dstdir/`basename "$src"` dstdir_status=0 else - # Prefer dirname, but fall back on a substitute if dirname fails. - dstdir=` - (dirname "$dst") 2>/dev/null || - expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$dst" : 'X\(//\)[^/]' \| \ - X"$dst" : 'X\(//\)$' \| \ - X"$dst" : 'X\(/\)' \| . 2>/dev/null || - echo X"$dst" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q' - ` - + dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi -- cgit v1.2.1 From bd44db1abdeea3643ba0387de24af7539da644e4 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 30 Oct 2013 22:58:16 +0000 Subject: install-sh: assume ${var:-value} works as expected The Autoconf manual says it is OK these days. * lib/install.sh: Adjust. * NEWS: Update. Signed-off-by: Stefano Lattarini --- NEWS | 6 ++++-- lib/install-sh | 9 ++------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index 50f1e7fe1..37f513bc6 100644 --- a/NEWS +++ b/NEWS @@ -108,8 +108,10 @@ New in 1.15: * Cleanups and modernizations: - - The install-sh script now unconditionally assumes that a working - 'dirname' program is available. + - The install-sh script has been modernized, and now makes the following + assumptions unconditionally: + (1) a working 'dirname' program is available; + (2) the ${var:-value} shell parameters substitution works; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/lib/install-sh b/lib/install-sh index f950f30c2..9a7bad82f 100755 --- a/lib/install-sh +++ b/lib/install-sh @@ -45,15 +45,10 @@ nl=' ' IFS=" "" $nl" -# set DOITPROG to echo to test this script +# Set DOITPROG to "echo" to test this script. -# Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} -if test -z "$doit"; then - doit_exec=exec -else - doit_exec=$doit -fi +doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. -- cgit v1.2.1 From 006ca8d920f41c9bcc157e53e92b420d7a8f162e Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 30 Oct 2013 23:17:55 +0000 Subject: install-sh: assume that "set -f" and "set +f" work... ... and disable/enable shell globbing, respectively. This is mandated by POSIX, and supported even by Solaris 9 /bin/sh (one of the most braindead shells we still support). * lib/install.sh: Adjust. * NEWS: Update. Signed-off-by: Stefano Lattarini --- NEWS | 4 +++- lib/install-sh | 24 ++++-------------------- 2 files changed, 7 insertions(+), 21 deletions(-) diff --git a/NEWS b/NEWS index 37f513bc6..da41307e0 100644 --- a/NEWS +++ b/NEWS @@ -109,9 +109,11 @@ New in 1.15: * Cleanups and modernizations: - The install-sh script has been modernized, and now makes the following - assumptions unconditionally: + assumptions *unconditionally*: (1) a working 'dirname' program is available; (2) the ${var:-value} shell parameters substitution works; + (3) the "set -f" and "set +f" shell commands work, and, respectively, + disable and enable shell globbing. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/lib/install-sh b/lib/install-sh index 9a7bad82f..be3c5d94c 100755 --- a/lib/install-sh +++ b/lib/install-sh @@ -63,17 +63,6 @@ mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} -posix_glob='?' -initialize_posix_glob=' - test "$posix_glob" != "?" || { - if (set -f) 2>/dev/null; then - posix_glob= - else - posix_glob=: - fi - } -' - posix_mkdir= # Desired mode of installed file. @@ -365,14 +354,12 @@ do *) prefix='';; esac - eval "$initialize_posix_glob" - oIFS=$IFS IFS=/ - $posix_glob set -f + set -f set fnord $dstdir shift - $posix_glob set +f + set +f IFS=$oIFS prefixes= @@ -443,13 +430,10 @@ do if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && - - eval "$initialize_posix_glob" && - $posix_glob set -f && + set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && - $posix_glob set +f && - + set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then -- cgit v1.2.1 From 7fc2672b29c2bc8428e0b3399447209dfe3d87f2 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 30 Oct 2013 23:22:42 +0000 Subject: cosmetics: untabify the install-sh script * lib/install-sh: Here, plus a couple of related formatting tweaks. Signed-off-by: Stefano Lattarini --- lib/install-sh | 274 ++++++++++++++++++++++++++++----------------------------- 1 file changed, 137 insertions(+), 137 deletions(-) diff --git a/lib/install-sh b/lib/install-sh index be3c5d94c..043673775 100755 --- a/lib/install-sh +++ b/lib/install-sh @@ -41,9 +41,10 @@ scriptversion=2013-10-30.23; # UTC # This script is compatible with the BSD install script, but was written # from scratch. +tab=' ' nl=' ' -IFS=" "" $nl" +IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. @@ -121,40 +122,39 @@ while test $# -ne 0; do -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" - shift;; + shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 - case $mode in - *' '* | *' '* | *' -'* | *'*'* | *'?'* | *'['*) - echo "$0: invalid mode: $mode" >&2 - exit 1;; - esac - shift;; + case $mode in + *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; -o) chowncmd="$chownprog $2" - shift;; + shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 - # Protect names problematic for 'test' and other utilities. - case $dst_arg in - -* | [=\(\)!]) dst_arg=./$dst_arg;; - esac - shift;; + # Protect names problematic for 'test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; - --) shift - break;; + --) shift + break;; - -*) echo "$0: invalid option: $1" >&2 - exit 1;; + -*) echo "$0: invalid option: $1" >&2 + exit 1;; *) break;; esac @@ -207,16 +207,16 @@ if test -z "$dir_arg"; then *[0-7]) if test -z "$stripcmd"; then - u_plus_rw= + u_plus_rw= else - u_plus_rw='% 200' + u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then - u_plus_rw= + u_plus_rw= else - u_plus_rw=,u+rw + u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac @@ -254,8 +254,8 @@ do # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then - echo "$0: $dst_arg: Is a directory" >&2 - exit 1 + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` @@ -272,74 +272,74 @@ do if test $dstdir_status != 0; then case $posix_mkdir in '') - # Create intermediate dirs using mode 755 as modified by the umask. - # This is like FreeBSD 'install' as of 1997-10-28. - umask=`umask` - case $stripcmd.$umask in - # Optimize common cases. - *[2367][2367]) mkdir_umask=$umask;; - .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; - - *[0-7]) - mkdir_umask=`expr $umask + 22 \ - - $umask % 100 % 40 + $umask % 20 \ - - $umask % 10 % 4 + $umask % 2 - `;; - *) mkdir_umask=$umask,go-w;; - esac - - # With -d, create the new directory with the user-specified mode. - # Otherwise, rely on $mkdir_umask. - if test -n "$dir_arg"; then - mkdir_mode=-m$mode - else - mkdir_mode= - fi - - posix_mkdir=false - case $umask in - *[123567][0-7][0-7]) - # POSIX mkdir -p sets u+wx bits regardless of umask, which - # is incompatible with FreeBSD 'install' when (umask & 300) != 0. - ;; - *) - tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ - trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 - - if (umask $mkdir_umask && - exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 - then - if test -z "$dir_arg" || { - # Check for POSIX incompatibilities with -m. - # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or - # other-writable bit of parent directory when it shouldn't. - # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. - ls_ld_tmpdir=`ls -ld "$tmpdir"` - case $ls_ld_tmpdir in - d????-?r-*) different_mode=700;; - d????-?--*) different_mode=755;; - *) false;; - esac && - $mkdirprog -m$different_mode -p -- "$tmpdir" && { - ls_ld_tmpdir_1=`ls -ld "$tmpdir"` - test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" - } - } - then posix_mkdir=: - fi - rmdir "$tmpdir/d" "$tmpdir" - else - # Remove any dirs left behind by ancient mkdir implementations. - rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null - fi - trap '' 0;; - esac;; + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; esac if $posix_mkdir && ( - umask $mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else @@ -349,9 +349,9 @@ do # directory the slow way, step by step, checking for races as we go. case $dstdir in - /*) prefix='/';; - [-=\(\)!]*) prefix='./';; - *) prefix='';; + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; esac oIFS=$IFS @@ -366,34 +366,34 @@ do for d do - test X"$d" = X && continue - - prefix=$prefix$d - if test -d "$prefix"; then - prefixes= - else - if $posix_mkdir; then - (umask=$mkdir_umask && - $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break - # Don't fail if two instances are running concurrently. - test -d "$prefix" || exit 1 - else - case $prefix in - *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; - *) qprefix=$prefix;; - esac - prefixes="$prefixes '$qprefix'" - fi - fi - prefix=$prefix/ + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ done if test -n "$prefixes"; then - # Don't fail if two instances are running concurrently. - (umask $mkdir_umask && - eval "\$doit_exec \$mkdirprog $prefixes") || - test -d "$dstdir" || exit 1 - obsolete_mkdir_used=true + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true fi fi fi @@ -428,8 +428,8 @@ do # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && - old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && - new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && @@ -446,24 +446,24 @@ do # to itself, or perhaps because mv is so ancient that it does not # support -f. { - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - test ! -f "$dst" || - $doit $rmcmd -f "$dst" 2>/dev/null || - { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && - { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } - } || - { echo "$0: cannot unlink or rename $dst" >&2 - (exit 1); exit 1 - } - } && - - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 -- cgit v1.2.1 From 526c4b04a699fd62da6bc3915cdb333f0a6ca92d Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 24 Dec 2013 15:28:23 +0100 Subject: NEWS: stop reporting "new" Automake versioning scheme It's actually old news by now. Signed-off-by: Stefano Lattarini --- NEWS | 42 ------------------------------------------ 1 file changed, 42 deletions(-) diff --git a/NEWS b/NEWS index db9fdd4cb..5cc001977 100644 --- a/NEWS +++ b/NEWS @@ -1,45 +1,3 @@ -* WARNING: New versioning scheme for Automake. - - - Beginning with the release 1.13.2, Automake has started to use a - more rational versioning scheme, that should allow users to know - which kind of changes can be expected from a new version, based - on its version number. - - + Micro releases (e.g., 1.13.3, 2.0.1, 3.2.8) introduce only bug - and regression fixes and documentation updates; they should not - introduce new features, nor any backward-incompatibility (any - such incompatibility would be considered a bug, to be fixed with - a further micro release). - - + Minor releases (e.g., 1.14, 2.1) can introduce new backward - compatible features; the only backward-incompatibilities allowed - in such a release are new *non-fatal* deprecations and warnings, - and possibly fixes for old or non-trivial bugs (or even inefficient - behaviours) that could unfortunately have been seen and used by - some as "corner case features". Possible disruptions caused by - this kind of fixes should hopefully be quite rare, and their - effects limited in scope. - - + Major versions (now expected to be released every 18 or 24 months, - and not more often) can introduce new big features (possibly with - rough edges and not-fully-stabilized APIs), removal of deprecated - features, backward-incompatible changes of behaviour, and possibly - major refactorings (that, while ideally transparent to the user, - could introduce new bugs). Incompatibilities should however not - be introduced gratuitously and abruptly; a proper deprecation path - should be duly implemented in the preceding minor releases. - - - According to this new scheme, the next major version of Automake - (the one that had previously been labelled as "1.14") will actually - become "Automake 2.0". Automake 1.14 has already been released as - the last minor release, and the present one is a bug-fixing release - following up on that one. - - - See discussion about automake bug#13578 for more details and - background: - -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - * WARNING: Future backward-incompatibilities! - Makefile recipes generated by Automake 2.0 will expect to use an -- cgit v1.2.1 From a6d6734fca39448770365e77acb562e6c42a7ea2 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 24 Dec 2013 16:27:28 +0100 Subject: TAP driver: remove perl implementation (move it into contrib/) That implementation was only meant as a standard against which the portable awk+shell implementation was to be measured. Now, since Automake 1.12, the latter implementation is fully functional and already used in the wild, and in fact feature-par with the perl implementation. So the perl implementation is now just slowing down and complicating our testsuite. Let's move it to 'contrib/' (we don't want to remove it, in case someone is actually using it in the wild). * lib/tap-driver.pl: Move it ... * contrib/tap-driver.pl: ... here. While at it, convert quoting `like this' to quoting 'like this', and remove an obsolescent FIXME comment. * lib/Makefile.inc (dist_script_DATA): Drop '%D%/tap-driver.pl'. * Makefile.am (EXTRA_DIST): Add 'contrib/tap-driver.pl'. * doc/automake.texi: Remove one stray reference to 'tap-driver.pl', and reference 'tap-driver.sh' instead, as intended. * t/ax/am-test-lib.sh ($am_tap_implementation): Delete definition and uses. (fetch_tap_driver): Simplify to unconditionally assume the shell+awk implementation of the TAP driver is used. (get_shell_script): Make more flexible so that it can cater to the needs of 'fetch_tap_driver()'. * t/tap-bad-prog.tap: Likewise. * t/tap-bailout-leading-space.sh: Likewise. * t/tap-signal.tap: Likewise. * t/tap-test-number-0.sh: Likewise. * t/test-driver-cond.sh: Use 'tap-driver.sh' instead of 'tap-driver.pl'. * gen-testsuite-part (%test_generators): Do not generate sister tests that use the perl TAP driver rather than the shell+awk one. * NEWS: Update. Signed-off-by: Stefano Lattarini --- Makefile.am | 1 + NEWS | 9 + contrib/tap-driver.pl | 563 ++++++++++++++++++++++++++++++++++++++++ doc/automake.texi | 2 +- gen-testsuite-part | 14 - lib/Makefile.inc | 3 +- lib/tap-driver.pl | 564 ----------------------------------------- t/ax/am-test-lib.sh | 53 ++-- t/tap-bad-prog.tap | 30 +-- t/tap-bailout-leading-space.sh | 9 +- t/tap-signal.tap | 9 +- t/tap-test-number-0.sh | 24 -- t/test-driver-cond.sh | 8 +- 13 files changed, 606 insertions(+), 683 deletions(-) create mode 100755 contrib/tap-driver.pl delete mode 100755 lib/tap-driver.pl diff --git a/Makefile.am b/Makefile.am index 143308a11..f8b6ac5c6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -92,6 +92,7 @@ ChangeLog: # Third-party, obsolescent or experimental stuff. EXTRA_DIST += \ + contrib/tap-driver.pl \ contrib/check-html.am \ contrib/multilib/README \ contrib/multilib/config-ml.in \ diff --git a/NEWS b/NEWS index 5cc001977..24dafddb2 100644 --- a/NEWS +++ b/NEWS @@ -73,6 +73,15 @@ New in 1.15: (3) the "set -f" and "set +f" shell commands work, and, respectively, disable and enable shell globbing. +* Automake-generated testsuite: + + - The perl implementation of the TAP testsuite driver is no longer + installed in the Automake's scripts directory, and is instead just + distributed as a "contrib" addition. There should be no reason to + use this implementation anyway in real packages, since the awk+shell + implementation of the TAP driver (that is documented in the manual) + is more portable and has feature parity with the perl implementation. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ New in 1.14.1: diff --git a/contrib/tap-driver.pl b/contrib/tap-driver.pl new file mode 100755 index 000000000..e7e581de4 --- /dev/null +++ b/contrib/tap-driver.pl @@ -0,0 +1,563 @@ +#! /usr/bin/env perl +# Copyright (C) 2011-2013 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 . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# This file is maintained in Automake, please report +# bugs to or send patches to +# . + +# ---------------------------------- # +# Imports, static data, and setup. # +# ---------------------------------- # + +use warnings FATAL => 'all'; +use strict; +use Getopt::Long (); +use TAP::Parser; + +my $VERSION = '2013-12-24.15'; # UTC + +my $ME = "tap-driver.pl"; + +my $USAGE = <<'END'; +Usage: + tap-driver --test-name=NAME --log-file=PATH --trs-file=PATH + [--expect-failure={yes|no}] [--color-tests={yes|no}] + [--enable-hard-errors={yes|no}] [--ignore-exit] + [--diagnostic-string=STRING] [--merge|--no-merge] + [--comments|--no-comments] [--] TEST-COMMAND +The '--test-name', '--log-file' and '--trs-file' options are mandatory. +END + +my $HELP = "$ME: TAP-aware test driver for Automake testsuite harness." . + "\n" . $USAGE; + +# Keep this in sync with 'lib/am/check.am:$(am__tty_colors)'. +my %COLOR = ( + red => "\e[0;31m", + grn => "\e[0;32m", + lgn => "\e[1;32m", + blu => "\e[1;34m", + mgn => "\e[0;35m", + brg => "\e[1m", + std => "\e[m", +); + +# It's important that NO_PLAN evaluates "false" as a boolean. +use constant NO_PLAN => 0; +use constant EARLY_PLAN => 1; +use constant LATE_PLAN => 2; + +# ------------------- # +# Global variables. # +# ------------------- # + +my $testno = 0; # Number of test results seen so far. +my $bailed_out = 0; # Whether a "Bail out!" directive has been seen. +my $parser; # TAP parser object (will be initialized later). + +# Whether the TAP plan has been seen or not, and if yes, which kind +# it is ("early" is seen before any test result, "late" otherwise). +my $plan_seen = NO_PLAN; + +# ----------------- # +# Option parsing. # +# ----------------- # + +my %cfg = ( + "color-tests" => 0, + "expect-failure" => 0, + "merge" => 0, + "comments" => 0, + "ignore-exit" => 0, +); + +my $test_script_name = undef; +my $log_file = undef; +my $trs_file = undef; +my $diag_string = "#"; + +Getopt::Long::GetOptions + ( + 'help' => sub { print $HELP; exit 0; }, + 'version' => sub { print "$ME $VERSION\n"; exit 0; }, + 'test-name=s' => \$test_script_name, + 'log-file=s' => \$log_file, + 'trs-file=s' => \$trs_file, + 'color-tests=s' => \&bool_opt, + 'expect-failure=s' => \&bool_opt, + 'enable-hard-errors=s' => sub {}, # No-op. + 'diagnostic-string=s' => \$diag_string, + 'comments' => sub { $cfg{"comments"} = 1; }, + 'no-comments' => sub { $cfg{"comments"} = 0; }, + 'merge' => sub { $cfg{"merge"} = 1; }, + 'no-merge' => sub { $cfg{"merge"} = 0; }, + 'ignore-exit' => sub { $cfg{"ignore-exit"} = 1; }, + ) or exit 1; + +# ------------- # +# Prototypes. # +# ------------- # + +sub add_test_result ($); +sub bool_opt ($$); +sub colored ($$); +sub copy_in_global_log (); +sub decorate_result ($); +sub extract_tap_comment ($); +sub finish (); +sub get_global_test_result (); +sub get_test_exit_message (); +sub get_test_results (); +sub handle_tap_bailout ($); +sub handle_tap_plan ($); +sub handle_tap_result ($); +sub is_null_string ($); +sub main (@); +sub must_recheck (); +sub report ($;$); +sub setup_io (); +sub setup_parser (@); +sub stringify_result_obj ($); +sub testsuite_error ($); +sub trap_perl_warnings_and_errors (); +sub write_test_results (); +sub yn ($); + +# -------------- # +# Subroutines. # +# -------------- # + +sub bool_opt ($$) +{ + my ($opt, $val) = @_; + if ($val =~ /^(?:y|yes)\z/i) + { + $cfg{$opt} = 1; + } + elsif ($val =~ /^(?:n|no)\z/i) + { + $cfg{$opt} = 0; + } + else + { + die "$ME: invalid argument '$val' for option '$opt'\n"; + } +} + +# If the given string is undefined or empty, return true, otherwise +# return false. This function is useful to avoid pitfalls like: +# if ($message) { print "$message\n"; } +# which wouldn't print anything if $message is the literal "0". +sub is_null_string ($) +{ + my $str = shift; + return ! (defined $str and length $str); +} + +# Convert a boolean to a "yes"/"no" string. +sub yn ($) +{ + my $bool = shift; + return $bool ? "yes" : "no"; +} + +TEST_RESULTS : +{ + my (@test_results_list, %test_results_seen); + + sub add_test_result ($) + { + my $res = shift; + push @test_results_list, $res; + $test_results_seen{$res} = 1; + } + + sub get_test_results () + { + return @test_results_list; + } + + # Whether the test script should be re-run by "make recheck". + sub must_recheck () + { + return grep { !/^(?:XFAIL|PASS|SKIP)$/ } (keys %test_results_seen); + } + + # Whether the content of the log file associated to this test should + # be copied into the "global" test-suite.log. + sub copy_in_global_log () + { + return grep { not $_ eq "PASS" } (keys %test_results_seen); + } + + sub get_global_test_result () + { + return "ERROR" + if $test_results_seen{"ERROR"}; + return "FAIL" + if $test_results_seen{"FAIL"} || $test_results_seen{"XPASS"}; + return "SKIP" + if scalar keys %test_results_seen == 1 && $test_results_seen{"SKIP"}; + return "PASS"; + } + +} + +sub write_test_results () +{ + open RES, ">", $trs_file or die "$ME: opening $trs_file: $!\n"; + print RES ":global-test-result: " . get_global_test_result . "\n"; + print RES ":recheck: " . yn (must_recheck) . "\n"; + print RES ":copy-in-global-log: " . yn (copy_in_global_log) . "\n"; + foreach my $result (get_test_results) + { + print RES ":test-result: $result\n"; + } + close RES or die "$ME: closing $trs_file: $!\n"; +} + +sub trap_perl_warnings_and_errors () +{ + $SIG{__WARN__} = $SIG{__DIE__} = sub + { + # Be sure to send the warning/error message to the original stderr + # (presumably the console), not into the log file. + open STDERR, ">&OLDERR"; + die @_; + } +} + +sub setup_io () +{ + # Redirect stderr and stdout to a temporary log file. Save the + # original stdout stream, since we need it to print testsuite + # progress output. Save original stderr stream, so that we can + # redirect warning and error messages from perl there. + open LOG, ">", $log_file or die "$ME: opening $log_file: $!\n"; + open OLDOUT, ">&STDOUT" or die "$ME: duplicating stdout: $!\n"; + open OLDERR, ">&STDERR" or die "$ME: duplicating stdout: $!\n"; + *OLDERR = *OLDERR; # To pacify a "used only once" warning. + trap_perl_warnings_and_errors; + open STDOUT, ">&LOG" or die "$ME: redirecting stdout: $!\n"; + open STDERR, ">&LOG" or die "$ME: redirecting stderr: $!\n"; +} + +sub setup_parser (@) +{ + local $@ = ''; + eval { $parser = TAP::Parser->new ({exec => \@_, merge => $cfg{merge}}) }; + if ($@ ne '') + { + # Don't use the error message in $@ as set by TAP::Parser, since + # currently it's both too generic (at the point of being basically + # useless) and quite long. + report "ERROR", "- couldn't execute test script"; + finish; + } +} + +sub get_test_exit_message () +{ + my $wstatus = $parser->wait; + # Watch out for possible internal errors. + die "$ME: couldn't get the exit status of the TAP producer" + unless defined $wstatus; + # Return an undefined value if the producer exited with success. + return unless $wstatus; + # Otherwise, determine whether it exited with error or was terminated + # by a signal. + use POSIX qw (WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG); + if (WIFEXITED ($wstatus)) + { + return sprintf "exited with status %d", WEXITSTATUS ($wstatus); + } + elsif (WIFSIGNALED ($wstatus)) + { + return sprintf "terminated by signal %d", WTERMSIG ($wstatus); + } + else + { + return "terminated abnormally"; + } +} + +sub stringify_result_obj ($) +{ + my $result_obj = shift; + my $COOKED_PASS = $cfg{"expect-failure"} ? "XPASS": "PASS"; + my $COOKED_FAIL = $cfg{"expect-failure"} ? "XFAIL": "FAIL"; + if ($result_obj->is_unplanned || $result_obj->number != $testno) + { + return "ERROR"; + } + elsif ($plan_seen == LATE_PLAN) + { + return "ERROR"; + } + elsif (!$result_obj->directive) + { + return $result_obj->is_ok ? $COOKED_PASS: $COOKED_FAIL; + } + elsif ($result_obj->has_todo) + { + return $result_obj->is_actual_ok ? "XPASS" : "XFAIL"; + } + elsif ($result_obj->has_skip) + { + return $result_obj->is_ok ? "SKIP" : $COOKED_FAIL; + } + die "$ME: INTERNAL ERROR"; # NOTREACHED +} + +sub colored ($$) +{ + my ($color_name, $text) = @_; + return $COLOR{$color_name} . $text . $COLOR{'std'}; +} + +sub decorate_result ($) +{ + my $result = shift; + return $result unless $cfg{"color-tests"}; + my %color_for_result = + ( + "ERROR" => 'mgn', + "PASS" => 'grn', + "XPASS" => 'red', + "FAIL" => 'red', + "XFAIL" => 'lgn', + "SKIP" => 'blu', + ); + if (my $color = $color_for_result{$result}) + { + return colored ($color, $result); + } + else + { + return $result; # Don't colorize unknown stuff. + } +} + +sub report ($;$) +{ + my ($msg, $result, $explanation) = (undef, @_); + if ($result =~ /^(?:X?(?:PASS|FAIL)|SKIP|ERROR)/) + { + $msg = ": $test_script_name"; + add_test_result $result; + } + elsif ($result eq "#") + { + $msg = " $test_script_name:"; + } + else + { + die "$ME: INTERNAL ERROR"; # NOTREACHED + } + $msg .= " $explanation" if defined $explanation; + $msg .= "\n"; + # Output on console might be colorized. + print OLDOUT decorate_result ($result) . $msg; + # Log the result in the log file too, to help debugging (this is + # especially true when said result is a TAP error or "Bail out!"). + print $result . $msg; +} + +sub testsuite_error ($) +{ + report "ERROR", "- $_[0]"; +} + +sub handle_tap_result ($) +{ + $testno++; + my $result_obj = shift; + + my $test_result = stringify_result_obj $result_obj; + my $string = $result_obj->number; + + my $description = $result_obj->description; + $string .= " $description" + unless is_null_string $description; + + if ($plan_seen == LATE_PLAN) + { + $string .= " # AFTER LATE PLAN"; + } + elsif ($result_obj->is_unplanned) + { + $string .= " # UNPLANNED"; + } + elsif ($result_obj->number != $testno) + { + $string .= " # OUT-OF-ORDER (expecting $testno)"; + } + elsif (my $directive = $result_obj->directive) + { + $string .= " # $directive"; + my $explanation = $result_obj->explanation; + $string .= " $explanation" + unless is_null_string $explanation; + } + + report $test_result, $string; +} + +sub handle_tap_plan ($) +{ + my $plan = shift; + if ($plan_seen) + { + # Error, only one plan per stream is acceptable. + testsuite_error "multiple test plans"; + return; + } + # The TAP plan can come before or after *all* the TAP results; we speak + # respectively of an "early" or a "late" plan. If we see the plan line + # after at least one TAP result has been seen, assume we have a late + # plan; in this case, any further test result seen after the plan will + # be flagged as an error. + $plan_seen = ($testno >= 1 ? LATE_PLAN : EARLY_PLAN); + # If $testno > 0, we have an error ("too many tests run") that will be + # automatically dealt with later, so don't worry about it here. If + # $plan_seen is true, we have an error due to a repeated plan, and that + # has already been dealt with above. Otherwise, we have a valid "plan + # with SKIP" specification, and should report it as a particular kind + # of SKIP result. + if ($plan->directive && $testno == 0) + { + my $explanation = is_null_string ($plan->explanation) ? + undef : "- " . $plan->explanation; + report "SKIP", $explanation; + } +} + +sub handle_tap_bailout ($) +{ + my ($bailout, $msg) = ($_[0], "Bail out!"); + $bailed_out = 1; + $msg .= " " . $bailout->explanation + unless is_null_string $bailout->explanation; + testsuite_error $msg; +} + +sub extract_tap_comment ($) +{ + my $line = shift; + if (index ($line, $diag_string) == 0) + { + # Strip leading '$diag_string' from '$line'. + $line = substr ($line, length ($diag_string)); + # And strip any leading and trailing whitespace left. + $line =~ s/(?:^\s*|\s*$)//g; + # Return what is left (if any). + return $line; + } + return ""; +} + +sub finish () +{ + write_test_results; + close LOG or die "$ME: closing $log_file: $!\n"; + exit 0; +} + +sub main (@) +{ + setup_io; + setup_parser @_; + + while (defined (my $cur = $parser->next)) + { + # Verbatim copy any input line into the log file. + print $cur->raw . "\n"; + # Parsing of TAP input should stop after a "Bail out!" directive. + next if $bailed_out; + + if ($cur->is_plan) + { + handle_tap_plan ($cur); + } + elsif ($cur->is_test) + { + handle_tap_result ($cur); + } + elsif ($cur->is_bailout) + { + handle_tap_bailout ($cur); + } + elsif ($cfg{comments}) + { + my $comment = extract_tap_comment ($cur->raw); + report "#", "$comment" if length $comment; + } + } + # A "Bail out!" directive should cause us to ignore any following TAP + # error, as well as a non-zero exit status from the TAP producer. + if (!$bailed_out) + { + if (!$plan_seen) + { + testsuite_error "missing test plan"; + } + elsif ($parser->tests_planned != $parser->tests_run) + { + my ($planned, $run) = ($parser->tests_planned, $parser->tests_run); + my $bad_amount = $run > $planned ? "many" : "few"; + testsuite_error (sprintf "too %s tests run (expected %d, got %d)", + $bad_amount, $planned, $run); + } + if (!$cfg{"ignore-exit"}) + { + my $msg = get_test_exit_message (); + testsuite_error $msg if $msg; + } + } + finish; +} + +# ----------- # +# Main code. # +# ----------- # + +main @ARGV; + +# Local Variables: +# perl-indent-level: 2 +# perl-continued-statement-offset: 2 +# perl-continued-brace-offset: 0 +# perl-brace-offset: 0 +# perl-brace-imaginary-offset: 0 +# perl-label-offset: -2 +# cperl-indent-level: 2 +# cperl-brace-offset: 0 +# cperl-continued-brace-offset: 0 +# cperl-label-offset: -2 +# cperl-extra-newline-before-brace: t +# cperl-merge-trailing-else: nil +# cperl-continued-statement-offset: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "my $VERSION = " +# time-stamp-format: "'%:y-%02m-%02d.%02H'" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/doc/automake.texi b/doc/automake.texi index cd33ad7c3..74a410177 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -9742,7 +9742,7 @@ echo ok 1 # Exit with error, even if all the tests have been successful. exit 7 -% @kbd{cp @var{PREFIX}/share/automake-@var{APIVERSION}/tap-driver.pl .} +% @kbd{cp @var{PREFIX}/share/automake-@var{APIVERSION}/tap-driver.sh .} % @kbd{autoreconf -vi && ./configure && make check} ... PASS: foo.test 1 - Swallows fly diff --git a/gen-testsuite-part b/gen-testsuite-part index 3bd5c9f01..5bd1b4e96 100755 --- a/gen-testsuite-part +++ b/gen-testsuite-part @@ -241,20 +241,6 @@ my %test_generators = shell_setup_code => 'am_test_prefer_config_shell=yes', }, - # - # Tests on tap support should be run with both the perl and awk - # implementations of the TAP driver (they run with the awk one - # by default). - # - perl_tap_driver => - { - line_matcher => - qr<(?:\bfetch_tap_driver\b|[\s/]tap-setup\.sh\b)>, - line_rejecter => - qr/\bam_tap_implementation=/, - shell_setup_code => - 'am_tap_implementation=perl', - }, ); #-------------------------------------------------------------------------- diff --git a/lib/Makefile.inc b/lib/Makefile.inc index d1971f55f..8eed3038e 100644 --- a/lib/Makefile.inc +++ b/lib/Makefile.inc @@ -40,8 +40,7 @@ dist_script_DATA = \ %D%/py-compile \ %D%/ar-lib \ %D%/test-driver \ - %D%/tap-driver.sh \ - %D%/tap-driver.pl + %D%/tap-driver.sh install-data-hook: @$(POST_INSTALL) diff --git a/lib/tap-driver.pl b/lib/tap-driver.pl deleted file mode 100755 index aca65fe44..000000000 --- a/lib/tap-driver.pl +++ /dev/null @@ -1,564 +0,0 @@ -#! /usr/bin/env perl -# Copyright (C) 2011-2013 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 . - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# This file is maintained in Automake, please report -# bugs to or send patches to -# . - -# ---------------------------------- # -# Imports, static data, and setup. # -# ---------------------------------- # - -use warnings FATAL => 'all'; -use strict; -use Getopt::Long (); -use TAP::Parser; - -my $VERSION = '2012-02-01.19'; # UTC - -my $ME = "tap-driver.pl"; - -my $USAGE = <<'END'; -Usage: - tap-driver --test-name=NAME --log-file=PATH --trs-file=PATH - [--expect-failure={yes|no}] [--color-tests={yes|no}] - [--enable-hard-errors={yes|no}] [--ignore-exit] - [--diagnostic-string=STRING] [--merge|--no-merge] - [--comments|--no-comments] [--] TEST-COMMAND -The `--test-name', `--log-file' and `--trs-file' options are mandatory. -END - -my $HELP = "$ME: TAP-aware test driver for Automake testsuite harness." . - "\n" . $USAGE; - -# Keep this in sync with `lib/am/check.am:$(am__tty_colors)'. -my %COLOR = ( - red => "\e[0;31m", - grn => "\e[0;32m", - lgn => "\e[1;32m", - blu => "\e[1;34m", - mgn => "\e[0;35m", - brg => "\e[1m", - std => "\e[m", -); - -# It's important that NO_PLAN evaluates "false" as a boolean. -use constant NO_PLAN => 0; -use constant EARLY_PLAN => 1; -use constant LATE_PLAN => 2; - -# ------------------- # -# Global variables. # -# ------------------- # - -my $testno = 0; # Number of test results seen so far. -my $bailed_out = 0; # Whether a "Bail out!" directive has been seen. -my $parser; # TAP parser object (will be initialized later). - -# Whether the TAP plan has been seen or not, and if yes, which kind -# it is ("early" is seen before any test result, "late" otherwise). -my $plan_seen = NO_PLAN; - -# ----------------- # -# Option parsing. # -# ----------------- # - -my %cfg = ( - "color-tests" => 0, - "expect-failure" => 0, - "merge" => 0, - "comments" => 0, - "ignore-exit" => 0, -); - -my $test_script_name = undef; -my $log_file = undef; -my $trs_file = undef; -my $diag_string = "#"; - -Getopt::Long::GetOptions - ( - 'help' => sub { print $HELP; exit 0; }, - 'version' => sub { print "$ME $VERSION\n"; exit 0; }, - 'test-name=s' => \$test_script_name, - 'log-file=s' => \$log_file, - 'trs-file=s' => \$trs_file, - 'color-tests=s' => \&bool_opt, - 'expect-failure=s' => \&bool_opt, - 'enable-hard-errors=s' => sub {}, # No-op. - 'diagnostic-string=s' => \$diag_string, - 'comments' => sub { $cfg{"comments"} = 1; }, - 'no-comments' => sub { $cfg{"comments"} = 0; }, - 'merge' => sub { $cfg{"merge"} = 1; }, - 'no-merge' => sub { $cfg{"merge"} = 0; }, - 'ignore-exit' => sub { $cfg{"ignore-exit"} = 1; }, - ) or exit 1; - -# ------------- # -# Prototypes. # -# ------------- # - -sub add_test_result ($); -sub bool_opt ($$); -sub colored ($$); -sub copy_in_global_log (); -sub decorate_result ($); -sub extract_tap_comment ($); -sub finish (); -sub get_global_test_result (); -sub get_test_exit_message (); -sub get_test_results (); -sub handle_tap_bailout ($); -sub handle_tap_plan ($); -sub handle_tap_result ($); -sub is_null_string ($); -sub main (@); -sub must_recheck (); -sub report ($;$); -sub setup_io (); -sub setup_parser (@); -sub stringify_result_obj ($); -sub testsuite_error ($); -sub trap_perl_warnings_and_errors (); -sub write_test_results (); -sub yn ($); - -# -------------- # -# Subroutines. # -# -------------- # - -sub bool_opt ($$) -{ - my ($opt, $val) = @_; - if ($val =~ /^(?:y|yes)\z/i) - { - $cfg{$opt} = 1; - } - elsif ($val =~ /^(?:n|no)\z/i) - { - $cfg{$opt} = 0; - } - else - { - die "$ME: invalid argument '$val' for option '$opt'\n"; - } -} - -# If the given string is undefined or empty, return true, otherwise -# return false. This function is useful to avoid pitfalls like: -# if ($message) { print "$message\n"; } -# which wouldn't print anything if $message is the literal "0". -sub is_null_string ($) -{ - my $str = shift; - return ! (defined $str and length $str); -} - -# Convert a boolean to a "yes"/"no" string. -sub yn ($) -{ - my $bool = shift; - return $bool ? "yes" : "no"; -} - -TEST_RESULTS : -{ - my (@test_results_list, %test_results_seen); - - sub add_test_result ($) - { - my $res = shift; - push @test_results_list, $res; - $test_results_seen{$res} = 1; - } - - sub get_test_results () - { - return @test_results_list; - } - - # Whether the test script should be re-run by "make recheck". - sub must_recheck () - { - return grep { !/^(?:XFAIL|PASS|SKIP)$/ } (keys %test_results_seen); - } - - # Whether the content of the log file associated to this test should - # be copied into the "global" test-suite.log. - sub copy_in_global_log () - { - return grep { not $_ eq "PASS" } (keys %test_results_seen); - } - - # FIXME: this can certainly be improved ... - sub get_global_test_result () - { - return "ERROR" - if $test_results_seen{"ERROR"}; - return "FAIL" - if $test_results_seen{"FAIL"} || $test_results_seen{"XPASS"}; - return "SKIP" - if scalar keys %test_results_seen == 1 && $test_results_seen{"SKIP"}; - return "PASS"; - } - -} - -sub write_test_results () -{ - open RES, ">", $trs_file or die "$ME: opening $trs_file: $!\n"; - print RES ":global-test-result: " . get_global_test_result . "\n"; - print RES ":recheck: " . yn (must_recheck) . "\n"; - print RES ":copy-in-global-log: " . yn (copy_in_global_log) . "\n"; - foreach my $result (get_test_results) - { - print RES ":test-result: $result\n"; - } - close RES or die "$ME: closing $trs_file: $!\n"; -} - -sub trap_perl_warnings_and_errors () -{ - $SIG{__WARN__} = $SIG{__DIE__} = sub - { - # Be sure to send the warning/error message to the original stderr - # (presumably the console), not into the log file. - open STDERR, ">&OLDERR"; - die @_; - } -} - -sub setup_io () -{ - # Redirect stderr and stdout to a temporary log file. Save the - # original stdout stream, since we need it to print testsuite - # progress output. Save original stderr stream, so that we can - # redirect warning and error messages from perl there. - open LOG, ">", $log_file or die "$ME: opening $log_file: $!\n"; - open OLDOUT, ">&STDOUT" or die "$ME: duplicating stdout: $!\n"; - open OLDERR, ">&STDERR" or die "$ME: duplicating stdout: $!\n"; - *OLDERR = *OLDERR; # To pacify a "used only once" warning. - trap_perl_warnings_and_errors; - open STDOUT, ">&LOG" or die "$ME: redirecting stdout: $!\n"; - open STDERR, ">&LOG" or die "$ME: redirecting stderr: $!\n"; -} - -sub setup_parser (@) -{ - local $@ = ''; - eval { $parser = TAP::Parser->new ({exec => \@_, merge => $cfg{merge}}) }; - if ($@ ne '') - { - # Don't use the error message in $@ as set by TAP::Parser, since - # currently it's both too generic (at the point of being basically - # useless) and quite long. - report "ERROR", "- couldn't execute test script"; - finish; - } -} - -sub get_test_exit_message () -{ - my $wstatus = $parser->wait; - # Watch out for possible internal errors. - die "$ME: couldn't get the exit status of the TAP producer" - unless defined $wstatus; - # Return an undefined value if the producer exited with success. - return unless $wstatus; - # Otherwise, determine whether it exited with error or was terminated - # by a signal. - use POSIX qw (WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG); - if (WIFEXITED ($wstatus)) - { - return sprintf "exited with status %d", WEXITSTATUS ($wstatus); - } - elsif (WIFSIGNALED ($wstatus)) - { - return sprintf "terminated by signal %d", WTERMSIG ($wstatus); - } - else - { - return "terminated abnormally"; - } -} - -sub stringify_result_obj ($) -{ - my $result_obj = shift; - my $COOKED_PASS = $cfg{"expect-failure"} ? "XPASS": "PASS"; - my $COOKED_FAIL = $cfg{"expect-failure"} ? "XFAIL": "FAIL"; - if ($result_obj->is_unplanned || $result_obj->number != $testno) - { - return "ERROR"; - } - elsif ($plan_seen == LATE_PLAN) - { - return "ERROR"; - } - elsif (!$result_obj->directive) - { - return $result_obj->is_ok ? $COOKED_PASS: $COOKED_FAIL; - } - elsif ($result_obj->has_todo) - { - return $result_obj->is_actual_ok ? "XPASS" : "XFAIL"; - } - elsif ($result_obj->has_skip) - { - return $result_obj->is_ok ? "SKIP" : $COOKED_FAIL; - } - die "$ME: INTERNAL ERROR"; # NOTREACHED -} - -sub colored ($$) -{ - my ($color_name, $text) = @_; - return $COLOR{$color_name} . $text . $COLOR{'std'}; -} - -sub decorate_result ($) -{ - my $result = shift; - return $result unless $cfg{"color-tests"}; - my %color_for_result = - ( - "ERROR" => 'mgn', - "PASS" => 'grn', - "XPASS" => 'red', - "FAIL" => 'red', - "XFAIL" => 'lgn', - "SKIP" => 'blu', - ); - if (my $color = $color_for_result{$result}) - { - return colored ($color, $result); - } - else - { - return $result; # Don't colorize unknown stuff. - } -} - -sub report ($;$) -{ - my ($msg, $result, $explanation) = (undef, @_); - if ($result =~ /^(?:X?(?:PASS|FAIL)|SKIP|ERROR)/) - { - $msg = ": $test_script_name"; - add_test_result $result; - } - elsif ($result eq "#") - { - $msg = " $test_script_name:"; - } - else - { - die "$ME: INTERNAL ERROR"; # NOTREACHED - } - $msg .= " $explanation" if defined $explanation; - $msg .= "\n"; - # Output on console might be colorized. - print OLDOUT decorate_result ($result) . $msg; - # Log the result in the log file too, to help debugging (this is - # especially true when said result is a TAP error or "Bail out!"). - print $result . $msg; -} - -sub testsuite_error ($) -{ - report "ERROR", "- $_[0]"; -} - -sub handle_tap_result ($) -{ - $testno++; - my $result_obj = shift; - - my $test_result = stringify_result_obj $result_obj; - my $string = $result_obj->number; - - my $description = $result_obj->description; - $string .= " $description" - unless is_null_string $description; - - if ($plan_seen == LATE_PLAN) - { - $string .= " # AFTER LATE PLAN"; - } - elsif ($result_obj->is_unplanned) - { - $string .= " # UNPLANNED"; - } - elsif ($result_obj->number != $testno) - { - $string .= " # OUT-OF-ORDER (expecting $testno)"; - } - elsif (my $directive = $result_obj->directive) - { - $string .= " # $directive"; - my $explanation = $result_obj->explanation; - $string .= " $explanation" - unless is_null_string $explanation; - } - - report $test_result, $string; -} - -sub handle_tap_plan ($) -{ - my $plan = shift; - if ($plan_seen) - { - # Error, only one plan per stream is acceptable. - testsuite_error "multiple test plans"; - return; - } - # The TAP plan can come before or after *all* the TAP results; we speak - # respectively of an "early" or a "late" plan. If we see the plan line - # after at least one TAP result has been seen, assume we have a late - # plan; in this case, any further test result seen after the plan will - # be flagged as an error. - $plan_seen = ($testno >= 1 ? LATE_PLAN : EARLY_PLAN); - # If $testno > 0, we have an error ("too many tests run") that will be - # automatically dealt with later, so don't worry about it here. If - # $plan_seen is true, we have an error due to a repeated plan, and that - # has already been dealt with above. Otherwise, we have a valid "plan - # with SKIP" specification, and should report it as a particular kind - # of SKIP result. - if ($plan->directive && $testno == 0) - { - my $explanation = is_null_string ($plan->explanation) ? - undef : "- " . $plan->explanation; - report "SKIP", $explanation; - } -} - -sub handle_tap_bailout ($) -{ - my ($bailout, $msg) = ($_[0], "Bail out!"); - $bailed_out = 1; - $msg .= " " . $bailout->explanation - unless is_null_string $bailout->explanation; - testsuite_error $msg; -} - -sub extract_tap_comment ($) -{ - my $line = shift; - if (index ($line, $diag_string) == 0) - { - # Strip leading `$diag_string' from `$line'. - $line = substr ($line, length ($diag_string)); - # And strip any leading and trailing whitespace left. - $line =~ s/(?:^\s*|\s*$)//g; - # Return what is left (if any). - return $line; - } - return ""; -} - -sub finish () -{ - write_test_results; - close LOG or die "$ME: closing $log_file: $!\n"; - exit 0; -} - -sub main (@) -{ - setup_io; - setup_parser @_; - - while (defined (my $cur = $parser->next)) - { - # Verbatim copy any input line into the log file. - print $cur->raw . "\n"; - # Parsing of TAP input should stop after a "Bail out!" directive. - next if $bailed_out; - - if ($cur->is_plan) - { - handle_tap_plan ($cur); - } - elsif ($cur->is_test) - { - handle_tap_result ($cur); - } - elsif ($cur->is_bailout) - { - handle_tap_bailout ($cur); - } - elsif ($cfg{comments}) - { - my $comment = extract_tap_comment ($cur->raw); - report "#", "$comment" if length $comment; - } - } - # A "Bail out!" directive should cause us to ignore any following TAP - # error, as well as a non-zero exit status from the TAP producer. - if (!$bailed_out) - { - if (!$plan_seen) - { - testsuite_error "missing test plan"; - } - elsif ($parser->tests_planned != $parser->tests_run) - { - my ($planned, $run) = ($parser->tests_planned, $parser->tests_run); - my $bad_amount = $run > $planned ? "many" : "few"; - testsuite_error (sprintf "too %s tests run (expected %d, got %d)", - $bad_amount, $planned, $run); - } - if (!$cfg{"ignore-exit"}) - { - my $msg = get_test_exit_message (); - testsuite_error $msg if $msg; - } - } - finish; -} - -# ----------- # -# Main code. # -# ----------- # - -main @ARGV; - -# Local Variables: -# perl-indent-level: 2 -# perl-continued-statement-offset: 2 -# perl-continued-brace-offset: 0 -# perl-brace-offset: 0 -# perl-brace-imaginary-offset: 0 -# perl-label-offset: -2 -# cperl-indent-level: 2 -# cperl-brace-offset: 0 -# cperl-continued-brace-offset: 0 -# cperl-label-offset: -2 -# cperl-extra-newline-before-brace: t -# cperl-merge-trailing-else: nil -# cperl-continued-statement-offset: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "my $VERSION = " -# time-stamp-format: "'%:y-%02m-%02d.%02H'" -# time-stamp-time-zone: "UTC" -# time-stamp-end: "; # UTC" -# End: diff --git a/t/ax/am-test-lib.sh b/t/ax/am-test-lib.sh index 26e58ef04..cee5c8da8 100644 --- a/t/ax/am-test-lib.sh +++ b/t/ax/am-test-lib.sh @@ -583,17 +583,31 @@ count_test_results () # of /bin/sh. get_shell_script () { - test ! -f "$1" || rm -f "$1" || return 99 + am_source=$1 am_target=${2-$1} + test ! -f "$am_target" || rm -f "$am_target" || return 99 if test x"$am_test_prefer_config_shell" = x"yes"; then - sed "1s|#!.*|#! $SHELL|" "$am_scriptdir/$1" > "$1" \ - && chmod a+x "$1" \ + sed "1s|#!.*|#! $SHELL|" "$am_scriptdir/$am_source" > "$am_target" \ + && chmod a+x "$am_target" \ || return 99 else - cp -f "$am_scriptdir/$1" . || return 99 + cp -f "$am_scriptdir/$am_source" "$am_target" || return 99 fi - sed 10q "$1" # For debugging. + sed 10q "$am_target" # For debugging. + unset am_target am_source } +# fetch_tap_driver +# ---------------- +# Fetch the Automake-provided TAP driver from the 'lib/' directory into +# the current directory, and edit its shebang line so that it will be +# run with the proper shell. +fetch_tap_driver () +{ + AM_TAP_AWK=$AWK; export AM_TAP_AWK + get_shell_script tap-driver.sh tap-driver +} + + # require_xsi SHELL # ----------------- # Skip the test if the given shell fails to support common XSI constructs. @@ -612,35 +626,6 @@ xsi_shell_code=' && eval '\''test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5'\' -# fetch_tap_driver -# ---------------- -# Fetch the Automake-provided TAP driver from the 'lib/' directory into -# the current directory, and edit its shebang line so that it will be -# run with the perl interpreter determined at configure time. -fetch_tap_driver () -{ - # TODO: we should devise a way to make the shell TAP driver tested also - # TODO: with /bin/sh, for better coverage. - case $am_tap_implementation in - # Extra quoting required to avoid maintainer-check spurious failures. - 'perl') - $PERL -MTAP::Parser -e 1 \ - || skip_all_ "cannot import TAP::Parser perl module" - sed "1s|#!.*|#! $PERL -w|" "$am_scriptdir"/tap-driver.pl >tap-driver - ;; - shell) - AM_TAP_AWK=$AWK; export AM_TAP_AWK - sed "1s|#!.*|#! $SHELL|" "$am_scriptdir"/tap-driver.sh >tap-driver - ;; - *) - fatal_ "invalid \$am_tap_implementation '$am_tap_implementation'" ;; - esac \ - && chmod a+x tap-driver \ - || framework_failure_ "couldn't fetch $am_tap_implementation TAP driver" - sed 10q tap-driver # For debugging. -} -am_tap_implementation=${am_tap_implementation-shell} - # $PYTHON and support for PEP-3147. Needed to check our python-related # install rules. python_has_pep3147 () diff --git a/t/tap-bad-prog.tap b/t/tap-bad-prog.tap index 490cd4a78..9225c38ed 100644 --- a/t/tap-bad-prog.tap +++ b/t/tap-bad-prog.tap @@ -73,35 +73,13 @@ else fi # Check that no spurious test result is reported. This is lower-priority -# (and in fact the check currently fails for our awk-based driver). -directive= -if test $am_tap_implementation = shell; then - directive=TODO -else - # Older versions of IPC::Open3 (e.g., version 1.05 on perl 5.12.4 or - # version 1.0103 on perl 5.6.2) fail to properly trap errors in exec(2) - # calls in the child process; hence, the TAP driver cannot be properly - # informed of such error. - if $PERL -w -e ' - use IPC::Open3 qw/open3/; - $@ = ""; - eval { open3(*STDIN, *STDOUT, *STDERR, "am--no-such-command") }; - $@ =~ m/\bopen3:.*am--no-such-command/ - or die "Bad \$@ value: \"$@\"\n"; - '; then - : # OK. IPC::Open3 should be good enough. - else - for s in '"missing plan" message' 'results'; do - skip_ -r "IPC::Open3 not good enough" "no spurious $s" - done - exit 0 - fi -fi +# (and in fact the check currently fails). command_ok_ 'no spurious "missing plan" message' \ - -D "$directive" -- not grep 'missing.* plan' stdout + -D TODO -- not grep 'missing.* plan' stdout + command_ok_ 'no spurious results' \ - -D "$directive" -r 'still get "missing plan"' \ + -D TODO -r 'still get "missing plan"' \ count_test_results total=3 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=3 : diff --git a/t/tap-bailout-leading-space.sh b/t/tap-bailout-leading-space.sh index 120ae0340..7a55a1fba 100644 --- a/t/tap-bailout-leading-space.sh +++ b/t/tap-bailout-leading-space.sh @@ -14,15 +14,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Older versions of prove and TAP::Harness (e.g., 3.17) didn't recognize -# a "Bail out!" directive that was preceded by whitespace, but more modern -# versions (e.g., 3.23) do. So we leave this behaviour undefined for the -# perl implementation of the Automake TAP driver, but expect the latter, -# "more modern" behaviour in our awk TAP driver. +# A "Bail out!" directive that is preceded by whitespace should still +# be recognized. -am_tap_implementation=shell . test-init.sh - . tap-setup.sh cat > a.test < "all"; use strict; - use TAP::Parser; - my $parser = TAP::Parser->new({tap => "1..1\n" . "ok 0\n"}); - my $result = $parser->next; - $result->is_plan or die "first line is not TAP plan"; - $result = $parser->next; - $result->is_test or die "second line is not TAP test result"; - my $testno = $result->number; - $parser->next and die "unexpected further TAP stream"; - exit ($testno == 0 ? 0 : 77); - '; then - : # Nothing to do. - elif test $? -eq 77; then - skip_ 'TAP::Parser bug: test number 0 gets relabelled as 1' - else - fatal_ "error analyzing TAP::Parser module for bugs" - fi -fi - . tap-setup.sh cat > a.test <> configure.ac << END AM_CONDITIONAL([COND1], [:]) @@ -40,7 +40,7 @@ $AUTOCONF cat > Makefile.am << 'END' TESTS = foo bar.test baz.sh -EXTRA_DIST = $(TESTS) tap-driver.pl trivial-test-driver +EXTRA_DIST = $(TESTS) tap-driver.sh trivial-test-driver TEST_EXTENSIONS = .test .sh LOG_DRIVER = SH_LOG_DRIVER = $(tap_rulez) @@ -49,7 +49,7 @@ LOG_DRIVER += @my_LOG_DRIVER@ if COND2 tap_rulez = false else !COND2 -tap_rulez = $(PERL) $(srcdir)/tap-driver.pl +tap_rulez = $(PERL) $(srcdir)/tap-driver.sh endif !COND2 endif COND1 END -- cgit v1.2.1 From 203d0775e6a9c0e04d896d24b45eec614d92c230 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 24 Dec 2013 22:02:15 +0100 Subject: TAP driver: no need to invoke AC_PROG_AWK directly It is already required by AM_INIT_AUTOMAKE anyway. * doc/automake.texi: Adjust examples. * t/tap-doc2.sh: Adjust documentation-tracking test. * m4/init.m4 (AM_INIT_AUTOMAKE): Explicitly tell that the AC_PROG_AWK requirement is also needed whenever the TAP driver is used. Signed-off-by: Stefano Lattarini --- doc/automake.texi | 8 +++----- m4/init.m4 | 4 ++-- t/tap-doc2.sh | 1 - 3 files changed, 5 insertions(+), 8 deletions(-) diff --git a/doc/automake.texi b/doc/automake.texi index cd33ad7c3..645e7298f 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -9650,10 +9650,9 @@ Currently, the TAP driver that comes with Automake requires some by-hand steps on the developer's part (this situation should hopefully be improved in future Automake versions). You'll have to grab the @file{tap-driver.sh} script from the Automake distribution by hand, copy it in your source tree, -add a call to @code{AC_PROG_AWK} in @file{configure.ac} to search for a -proper awk program, and use the Automake support for third-party test -drivers to instruct the harness to use the @file{tap-driver.sh} script -and that awk program to run your TAP-producing tests. See the example +and use the Automake support for third-party test drivers to instruct the +harness to use the @file{tap-driver.sh} script and the awk program found +by @code{AM_INIT_AUTOMAKE} to run your TAP-producing tests. See the example below for clarification. Apart from the options common to all the Automake test drivers @@ -9709,7 +9708,6 @@ AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign -Wall -Werror]) AC_CONFIG_FILES([Makefile]) AC_REQUIRE_AUX_FILE([tap-driver.sh]) -AC_PROG_AWK AC_OUTPUT % @kbd{cat Makefile.am} diff --git a/m4/init.m4 b/m4/init.m4 index 432ff200c..05ad294fc 100644 --- a/m4/init.m4 +++ b/m4/init.m4 @@ -90,8 +90,8 @@ AC_REQUIRE([AC_PROG_MKDIR_P])dnl # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. +# We need awk for the "check" target (and possibly the TAP driver). The +# system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl diff --git a/t/tap-doc2.sh b/t/tap-doc2.sh index ddac739c3..d260d9a08 100644 --- a/t/tap-doc2.sh +++ b/t/tap-doc2.sh @@ -34,7 +34,6 @@ AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign -Wall -Werror]) AC_CONFIG_FILES([Makefile]) AC_REQUIRE_AUX_FILE([tap-driver.sh]) -AC_PROG_AWK AC_OUTPUT END -- cgit v1.2.1 From c7e2fb2e73b2d1b904feef0ed5e87ce05a41c119 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 24 Dec 2013 17:45:18 +0100 Subject: testsuite harness: report test exit status in log file The exit status of a test should be reported in the test logs, so that one can see at a glance whether the test has succeeded or failed, without having to look also into the corresponding .trs file. This fixes automake bug#11814. * lib/test-driver: Also report the test script exit status in the test log (as the last line). * t/check-exit-status-reported.sh: Test this new behaviour. * t/list-of-tests.mk: Add the new test. * t/ax/test-lib.sh( am_exit_trap): No longer log the test exit status; this has been made redundant by the change to 'test-driver'. While at it, fix an imperfect quoting. Signed-off-by: Stefano Lattarini --- NEWS | 6 +++ lib/test-driver | 13 +++++- t/ax/test-lib.sh | 3 +- t/list-of-tests.mk | 1 + t/parallel-tests-exit-status-reported.sh | 68 ++++++++++++++++++++++++++++++++ 5 files changed, 87 insertions(+), 4 deletions(-) create mode 100644 t/parallel-tests-exit-status-reported.sh diff --git a/NEWS b/NEWS index 5cc001977..61ed194cb 100644 --- a/NEWS +++ b/NEWS @@ -73,6 +73,12 @@ New in 1.15: (3) the "set -f" and "set +f" shell commands work, and, respectively, disable and enable shell globbing. +* Automake-generated testsuites: + + - The default test-driver used by the Automake-generates testsuites now + append the result and exit status of each "plain" test to the associated + log file (automake bug#118149). + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ New in 1.14.1: diff --git a/lib/test-driver b/lib/test-driver index d30605660..110eec409 100755 --- a/lib/test-driver +++ b/lib/test-driver @@ -106,11 +106,14 @@ trap "st=143; $do_exit" 15 # Test script is run here. "$@" >$log_file 2>&1 estatus=$? + if test $enable_hard_errors = no && test $estatus -eq 99; then - estatus=1 + tweaked_estatus=1 +else + tweaked_estatus=$estatus fi -case $estatus:$expect_failure in +case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; @@ -119,6 +122,12 @@ case $estatus:$expect_failure in *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac +# Report the test outcome and exit status in the logs, so that one can +# know whether the test passed or failed simply by looking at the '.log' +# file, without the need of also peaking into the corresponding '.trs' +# file (automake bug#11814). +echo "$res $test_name (exit status: $estatus)" >>$log_file + # Report outcome to console. echo "${col}${res}${std}: $test_name" diff --git a/t/ax/test-lib.sh b/t/ax/test-lib.sh index aa015d68d..b8c72533c 100644 --- a/t/ax/test-lib.sh +++ b/t/ax/test-lib.sh @@ -254,7 +254,7 @@ am_exit_trap () # behaviour, while from time to time useful to developers, is not # meant to be enabled by default, as it could cause spurious failures # in the wild. Thus it will be enabled only when the variable - # "am_explicit_skips" is set to a "true" value. + # 'am_explicit_skips' is set to a "true" value. case $am_explicit_skips in [yY]|[yY]es|1) if test $exit_status -eq 77 && test $am__test_skipped != yes; then @@ -266,7 +266,6 @@ am_exit_trap () fi am_keeping_testdirs || rm_rf_ $am_test_subdir set +x - echo "$me: exit $exit_status" # Spurious escaping to ensure we do not call our "exit" alias. \exit $exit_status } diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index 462497ee3..ba6578903 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -765,6 +765,7 @@ t/parallel-tests-basics.sh \ t/parallel-tests-concurrency.sh \ t/parallel-tests-concurrency-2.sh \ t/parallel-tests-empty.sh \ +t/parallel-tests-exit-status-reported.sh \ t/parallel-tests-generated-and-distributed.sh \ t/parallel-tests-recheck.sh \ t/parallel-tests-trailing-whitespace.sh \ diff --git a/t/parallel-tests-exit-status-reported.sh b/t/parallel-tests-exit-status-reported.sh new file mode 100644 index 000000000..d40f1f58a --- /dev/null +++ b/t/parallel-tests-exit-status-reported.sh @@ -0,0 +1,68 @@ +#! /bin/sh +# Copyright (C) 2013 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 . + +# The exit status of a test should be reported in the test logs, so +# that one can see at a glance whether the test has succeeded or failed, +# without having to look also into the corresponding .trs file. +# See automake bug#11814. + +. test-init.sh + +echo AC_OUTPUT >> configure.ac + +echo XFAIL_TESTS = t3.test t00.test > Makefile.am +echo TESTS = t00.test >> Makefile.am +for s in 0 1 2 3 5 77 78 99 100 126 127; do + echo "TESTS += t${s}.test" >> Makefile.am + cat > t${s}.test < Date: Tue, 24 Dec 2013 21:16:23 +0100 Subject: docs: drop a few obsolescent FIXME/TODO comments, and associated text Signed-off-by: Stefano Lattarini --- doc/automake.texi | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/doc/automake.texi b/doc/automake.texi index cd33ad7c3..09aa7d173 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -1900,9 +1900,6 @@ It is customary to make the first line of @file{Makefile.am} read: ## Process this file with automake to produce Makefile.in @end example -@c FIXME discuss putting a copyright into Makefile.am here? I would but -@c I don't know quite what to say. - @c FIXME document customary ordering of Makefile.am here! @@ -8821,9 +8818,6 @@ error} happens when e.g., the set-up of a test case scenario fails, or when some other unexpected or highly undesirable condition is encountered (for example, the program under test experiences a segmentation fault). -@emph{TODO}: Links to other test harnesses (esp. those sharing our -terminology)? - @node Simple Tests @section Simple Tests @@ -8956,8 +8950,6 @@ flag on file descriptors opened with the @command{exec} builtin, thus rendering an idiom like @code{AM_TESTS_ENVIRONMENT = exec 9>&2;} ineffectual. This issue also affects some Bourne shells, such as the HP-UX's @command{/bin/sh}, -@c FIXME: should we offer a link to the relevant discussions on the -@c bug-autoconf list? @c Keep in sync with tests-environment-backcompat.sh @example @@ -9017,7 +9009,6 @@ The serial test harness is enabled by the Automake option @option{serial-tests}. It operates by simply running the tests serially, one at the time, without any I/O redirection. It's up to the user to implement logging of tests' output, if that's requited or desired. -@c TODO: give an example of how this can be done. For historical and implementation reasons, the @code{AM_TESTS_ENVIRONMENT} variable is @emph{not} supported by this harness (it will be silently @@ -9086,8 +9077,6 @@ to a per-test log file, so that parallel execution does not produce intermingled output. The output from failed tests is collected in the @file{test-suite.log} file. If the variable @samp{VERBOSE} is set, this file is output after the summary. -@c FIXME: we should be clearer about what we mean exactly here ... -For best results, the tests should be verbose by default now. @vindex TEST_EXTENSIONS @vindex TEST_LOGS @@ -9596,12 +9585,6 @@ other end, if you are using a known and widespread test protocol with well-established implementations, being consistent with those implementations' output might be a good idea too. -@c TODO: Give an example, maybe inspired to py.test-style output. -@c TODO: That is a good idea because it shows a test driver that allows -@c TODO: for different levels of verbosity in the progress output (could -@c TODO: be implemented either using a driver cmdline flag, or an -@c TODO: environment variable, or both). - @node Using the TAP test protocol @section Using the TAP test protocol @@ -10838,9 +10821,6 @@ they all have their serious drawbacks and limitations. That's why automake provides support for a more advanced and flexible way of obtaining quieter output from @command{make} (for most rules at least). -@c TODO: Maybe describe in brief the precedent set by the build system -@c of the Linux Kernel, from which Automake took inspiration ... Links? - To give the gist of what Automake can do in this respect, here is a simple comparison between a typical @command{make} output (where silent rules are disabled) and one with silent rules enabled: -- cgit v1.2.1 From 431aa0bbe4f328ff2d26cbc8b146098e22cddc10 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 25 Dec 2013 16:51:05 +0100 Subject: tests: more significant names for a test * t/install2.sh: Rename... * t/dist-with-unreadable-makefile-fails.sh: ... like this. * t/list-of-tests.mk: Adjust. Signed-off-by: Stefano Lattarini --- t/dist-with-unreadable-makefile-fails.sh | 52 ++++++++++++++++++++++++++++++++ t/install2.sh | 52 -------------------------------- t/list-of-tests.mk | 2 +- 3 files changed, 53 insertions(+), 53 deletions(-) create mode 100644 t/dist-with-unreadable-makefile-fails.sh delete mode 100644 t/install2.sh diff --git a/t/dist-with-unreadable-makefile-fails.sh b/t/dist-with-unreadable-makefile-fails.sh new file mode 100644 index 000000000..67dd3d4d6 --- /dev/null +++ b/t/dist-with-unreadable-makefile-fails.sh @@ -0,0 +1,52 @@ +#! /bin/sh +# Copyright (C) 1999-2013 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 in 'make dist' +# From Pavel Roskin. + +am_create_testdir=empty +. test-init.sh + +cat > configure.ac << END +AC_INIT([$me], [1.0]) +dnl Prevent automake from looking in .. and ../.. +AC_CONFIG_AUX_DIR([.]) +AM_INIT_AUTOMAKE +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT +END + +cat > Makefile.am << 'END' +SUBDIRS = . +END + +$ACLOCAL +$AUTOCONF +$AUTOMAKE -a + +chmod 000 Makefile.am + +# On some systems (like DOS and Windows), files are always readable. +test ! -r Makefile.am || skip_ "cannot drop file read permissions" + +./configure + +# 'dist' should fail because we can't copy Makefile.am. +if $MAKE dist; then + exit 1 +else + exit 0 +fi diff --git a/t/install2.sh b/t/install2.sh deleted file mode 100644 index 67dd3d4d6..000000000 --- a/t/install2.sh +++ /dev/null @@ -1,52 +0,0 @@ -#! /bin/sh -# Copyright (C) 1999-2013 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 in 'make dist' -# From Pavel Roskin. - -am_create_testdir=empty -. test-init.sh - -cat > configure.ac << END -AC_INIT([$me], [1.0]) -dnl Prevent automake from looking in .. and ../.. -AC_CONFIG_AUX_DIR([.]) -AM_INIT_AUTOMAKE -AC_CONFIG_FILES([Makefile]) -AC_OUTPUT -END - -cat > Makefile.am << 'END' -SUBDIRS = . -END - -$ACLOCAL -$AUTOCONF -$AUTOMAKE -a - -chmod 000 Makefile.am - -# On some systems (like DOS and Windows), files are always readable. -test ! -r Makefile.am || skip_ "cannot drop file read permissions" - -./configure - -# 'dist' should fail because we can't copy Makefile.am. -if $MAKE dist; then - exit 1 -else - exit 0 -fi diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index ba6578903..66b1220c6 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -515,7 +515,7 @@ t/implicit.sh \ t/init.sh \ t/init2.sh \ t/insh2.sh \ -t/install2.sh \ +t/dist-with-unreadable-makefile-fails.sh \ t/installdir.sh \ t/instsh.sh \ t/instsh2.sh \ -- cgit v1.2.1 From 58fb7bf3e5f514b4a0595a7eea6732d6c816e29a Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 25 Dec 2013 16:57:07 +0100 Subject: tests: some cosmetic fixes * t/instdat.sh: Here. * t/instdat2.sh: And here. * t/instsh.sh: And here. * t/instsh3.sh: And here. Signed-off-by: Stefano Lattarini --- t/instdat.sh | 3 ++- t/instdat2.sh | 5 ++--- t/instsh.sh | 6 ++++-- t/instsh3.sh | 4 +++- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/t/instdat.sh b/t/instdat.sh index e030b904c..64e0c7f10 100644 --- a/t/instdat.sh +++ b/t/instdat.sh @@ -29,4 +29,5 @@ $ACLOCAL $AUTOMAKE grep '^DATA =' Makefile.in | grep 'INSTALL_DATA' && exit 1 -exit 0 + +: diff --git a/t/instdat2.sh b/t/instdat2.sh index 1a55e8e62..fcca61900 100644 --- a/t/instdat2.sh +++ b/t/instdat2.sh @@ -62,7 +62,7 @@ pkgdata_SCRIPTS = script ##pkginclude_SCRIPTS = script EOF -$ACLOCAL || exit 1 +$ACLOCAL $AUTOMAKE # install-SCRIPTS targets. @@ -75,7 +75,6 @@ EOF diff expected produced - # install-exec targets. sed -n '/^install-exec-am/,/^ /p' Makefile.in > produced @@ -86,4 +85,4 @@ EOF diff expected produced -exit 0 +: diff --git a/t/instsh.sh b/t/instsh.sh index 3d84245c9..33cf5f5aa 100644 --- a/t/instsh.sh +++ b/t/instsh.sh @@ -30,10 +30,12 @@ mv Makefile.am configure.ac frob/ cd frob $ACLOCAL -$AUTOMAKE --add-missing > output 2>&1 +$AUTOMAKE --add-missing >output 2>&1 || { cat output; exit 1; } +cat output # Only one '/' should appear in the output. -cat output grep '/.*/' output && exit 1 test -f install-sh + +: diff --git a/t/instsh3.sh b/t/instsh3.sh index d69f225d0..a53e21df7 100644 --- a/t/instsh3.sh +++ b/t/instsh3.sh @@ -21,7 +21,7 @@ required=non-root . test-init.sh # Solaris /usr/ucb/touch does not accept -t. -touch -t $old_timestamp foo \ +touch -t "$old_timestamp" foo \ || skip_ "touch utility doesn't accept '-t' option" get_shell_script install-sh @@ -41,3 +41,5 @@ diff file d1/file ./install-sh -C -m 444 file d1 test -r d1/file test ! -w d1/file + +: -- cgit v1.2.1 From 6863925ddd92c8f4b44556a2bb32d958d00325ff Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 25 Dec 2013 17:07:11 +0100 Subject: tests: more significant names for some tests * t/insh2.sh: Rename... * t/dist-install-sh.sh: ... like this. * t/instsh.sh: Rename... * t/add-missing-install-sh.sh: ... like this. * t/instsh2.sh: Rename... * t/install-sh-unittests.sh: ... like this. * t/instsh3.sh: Rename... * t/install-sh-option-C.sh: ... like this. * t/list-of-tests.mk: Adjust. Signed-off-by: Stefano Lattarini --- t/add-missing-install-sh.sh | 41 +++++++++++++++ t/dist-install-sh.sh | 40 +++++++++++++++ t/insh2.sh | 40 --------------- t/install-sh-option-C.sh | 45 +++++++++++++++++ t/install-sh-unittests.sh | 118 ++++++++++++++++++++++++++++++++++++++++++++ t/instsh.sh | 41 --------------- t/instsh2.sh | 118 -------------------------------------------- t/instsh3.sh | 45 ----------------- t/list-of-tests.mk | 8 +-- 9 files changed, 248 insertions(+), 248 deletions(-) create mode 100644 t/add-missing-install-sh.sh create mode 100644 t/dist-install-sh.sh delete mode 100644 t/insh2.sh create mode 100644 t/install-sh-option-C.sh create mode 100644 t/install-sh-unittests.sh delete mode 100644 t/instsh.sh delete mode 100644 t/instsh2.sh delete mode 100644 t/instsh3.sh diff --git a/t/add-missing-install-sh.sh b/t/add-missing-install-sh.sh new file mode 100644 index 000000000..33cf5f5aa --- /dev/null +++ b/t/add-missing-install-sh.sh @@ -0,0 +1,41 @@ +#! /bin/sh +# Copyright (C) 1996-2013 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 this bug: +# automake: Makefile.am: required file "../../install-sh" not found; installing +# This also makes sure that install-sh is created in the correct directory. + +. test-init.sh + +: > Makefile.am +rm -f install-sh + +# Since the default path includes '../..', we must run this test in +# yet another subdir. +mkdir frob +mv Makefile.am configure.ac frob/ +cd frob + +$ACLOCAL +$AUTOMAKE --add-missing >output 2>&1 || { cat output; exit 1; } +cat output + +# Only one '/' should appear in the output. +grep '/.*/' output && exit 1 + +test -f install-sh + +: diff --git a/t/dist-install-sh.sh b/t/dist-install-sh.sh new file mode 100644 index 000000000..de453f289 --- /dev/null +++ b/t/dist-install-sh.sh @@ -0,0 +1,40 @@ +#! /bin/sh +# Copyright (C) 1996-2013 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 where install-sh not included in distribution. + +. test-init.sh + +echo AC_OUTPUT >> configure.ac + +cat > Makefile.am << 'END' +pkgdata_DATA = +.PHONY: test +test: distdir + find $(distdir) ;: For debugging. + echo ' ' $(DISTFILES) ' ' | grep '[ /]install-sh ' + echo ' ' $(DIST_COMMON) ' ' | grep '[ /]install-sh ' + test -f $(distdir)/install-sh +END + +$ACLOCAL +$AUTOMAKE +$AUTOCONF + +./configure +$MAKE test + +: diff --git a/t/insh2.sh b/t/insh2.sh deleted file mode 100644 index de453f289..000000000 --- a/t/insh2.sh +++ /dev/null @@ -1,40 +0,0 @@ -#! /bin/sh -# Copyright (C) 1996-2013 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 where install-sh not included in distribution. - -. test-init.sh - -echo AC_OUTPUT >> configure.ac - -cat > Makefile.am << 'END' -pkgdata_DATA = -.PHONY: test -test: distdir - find $(distdir) ;: For debugging. - echo ' ' $(DISTFILES) ' ' | grep '[ /]install-sh ' - echo ' ' $(DIST_COMMON) ' ' | grep '[ /]install-sh ' - test -f $(distdir)/install-sh -END - -$ACLOCAL -$AUTOMAKE -$AUTOCONF - -./configure -$MAKE test - -: diff --git a/t/install-sh-option-C.sh b/t/install-sh-option-C.sh new file mode 100644 index 000000000..a53e21df7 --- /dev/null +++ b/t/install-sh-option-C.sh @@ -0,0 +1,45 @@ +#! /bin/sh +# Copyright (C) 2006-2013 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 . + +# More install-sh checks: check -C. + +am_create_testdir=empty +required=non-root +. test-init.sh + +# Solaris /usr/ucb/touch does not accept -t. +touch -t "$old_timestamp" foo \ + || skip_ "touch utility doesn't accept '-t' option" + +get_shell_script install-sh + +./install-sh -d d1 + +# Do not change the timestamps when using -C. +echo foo >file +./install-sh -C file d1 +TZ=UTC0 touch -t $old_timestamp d1/file +./install-sh -C file d1 +is_newest file d1/file +echo foo1 >file +./install-sh -C file d1 +diff file d1/file +# Rights must be updated. +./install-sh -C -m 444 file d1 +test -r d1/file +test ! -w d1/file + +: diff --git a/t/install-sh-unittests.sh b/t/install-sh-unittests.sh new file mode 100644 index 000000000..8a60d7435 --- /dev/null +++ b/t/install-sh-unittests.sh @@ -0,0 +1,118 @@ +#! /bin/sh +# Copyright (C) 2002-2013 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 . + +# Various install-sh checks. + +am_create_testdir=empty +. test-init.sh + +get_shell_script install-sh + +# Basic errors. +./install-sh && exit 1 +./install-sh -m 644 dest && exit 1 + +# Directories. + +# It should be OK to create no directory. We sometimes need +# this when directory are conditionally defined. +./install-sh -d +# One directory. +./install-sh -d d0 +test -d d0 +# Multiple directories (for make installdirs). +./install-sh -d d1 d2 d3 d4 +test -d d1 +test -d d2 +test -d d3 +test -d d4 +# Subdirectories. +./install-sh -d p1/p2/p3 p4//p5//p6// +test -d p1/p2/p3 +test -d p4/p5/p6 + +# Files. +: > x +./install-sh -c -m 644 x y +test -f x +test -f y +./install-sh -m 644 y z +test -f y +test -f z +# Multiple files. +./install-sh -m 644 -c x z d1 +test -f x +test -f z +test -f d1/x +test -f d1/z +./install-sh -m 644 x z d2// +test -f x +test -f z +test -f d2/x +test -f d2/z +./install-sh -t d3 -m 644 x z +test -f x +test -f z +test -f d3/x +test -f d3/z +./install-sh -t d4// -m 644 x z +test -f x +test -f z +test -f d4/x +test -f d4/z +./install-sh -T x d3/y +test -f x +test -f d3/y +./install-sh -T x d3 && exit 1 +./install-sh -T x d4// && exit 1 + +# Ensure that install-sh works with names that include spaces. +touch 'a b' +mkdir 'x y' +./install-sh 'a b' 'x y' +test -f x\ \ y/a\ \ b +test -f 'a b' + +# Ensure we do not run into 'test' operator precedence bugs with Tru64 sh. +for c in = '(' ')' '!'; do + ./install-sh $c 2>stderr && { cat stderr >&2; exit 1; } + cat stderr >&2 + grep 'test: ' stderr && exit 1 + # Skip tests if the file system is not capable. + mkdir ./$c || continue + rmdir ./$c + ./install-sh -d $c/$c/$c + rm -rf ./$c + ./install-sh -d $c d5/$c/$c + test -d ./$c + test -d d5/$c/$c + ./install-sh x $c + test -f ./$c/x + rm -f ./$c/x + ./install-sh -t $c x + test -f ./$c/x + rm -rf ./$c + ( : > ./$c ) || continue + ./install-sh $c x d5/$c/$c + test -f d5/$c/$c/x + test -f d5/$c/$c/$c + rm -f d5/$c/$c/? + ./install-sh -t d5/$c/$c $c x + test -f d5/$c/$c/x + test -f d5/$c/$c/$c +done + +: diff --git a/t/instsh.sh b/t/instsh.sh deleted file mode 100644 index 33cf5f5aa..000000000 --- a/t/instsh.sh +++ /dev/null @@ -1,41 +0,0 @@ -#! /bin/sh -# Copyright (C) 1996-2013 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 this bug: -# automake: Makefile.am: required file "../../install-sh" not found; installing -# This also makes sure that install-sh is created in the correct directory. - -. test-init.sh - -: > Makefile.am -rm -f install-sh - -# Since the default path includes '../..', we must run this test in -# yet another subdir. -mkdir frob -mv Makefile.am configure.ac frob/ -cd frob - -$ACLOCAL -$AUTOMAKE --add-missing >output 2>&1 || { cat output; exit 1; } -cat output - -# Only one '/' should appear in the output. -grep '/.*/' output && exit 1 - -test -f install-sh - -: diff --git a/t/instsh2.sh b/t/instsh2.sh deleted file mode 100644 index 8a60d7435..000000000 --- a/t/instsh2.sh +++ /dev/null @@ -1,118 +0,0 @@ -#! /bin/sh -# Copyright (C) 2002-2013 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 . - -# Various install-sh checks. - -am_create_testdir=empty -. test-init.sh - -get_shell_script install-sh - -# Basic errors. -./install-sh && exit 1 -./install-sh -m 644 dest && exit 1 - -# Directories. - -# It should be OK to create no directory. We sometimes need -# this when directory are conditionally defined. -./install-sh -d -# One directory. -./install-sh -d d0 -test -d d0 -# Multiple directories (for make installdirs). -./install-sh -d d1 d2 d3 d4 -test -d d1 -test -d d2 -test -d d3 -test -d d4 -# Subdirectories. -./install-sh -d p1/p2/p3 p4//p5//p6// -test -d p1/p2/p3 -test -d p4/p5/p6 - -# Files. -: > x -./install-sh -c -m 644 x y -test -f x -test -f y -./install-sh -m 644 y z -test -f y -test -f z -# Multiple files. -./install-sh -m 644 -c x z d1 -test -f x -test -f z -test -f d1/x -test -f d1/z -./install-sh -m 644 x z d2// -test -f x -test -f z -test -f d2/x -test -f d2/z -./install-sh -t d3 -m 644 x z -test -f x -test -f z -test -f d3/x -test -f d3/z -./install-sh -t d4// -m 644 x z -test -f x -test -f z -test -f d4/x -test -f d4/z -./install-sh -T x d3/y -test -f x -test -f d3/y -./install-sh -T x d3 && exit 1 -./install-sh -T x d4// && exit 1 - -# Ensure that install-sh works with names that include spaces. -touch 'a b' -mkdir 'x y' -./install-sh 'a b' 'x y' -test -f x\ \ y/a\ \ b -test -f 'a b' - -# Ensure we do not run into 'test' operator precedence bugs with Tru64 sh. -for c in = '(' ')' '!'; do - ./install-sh $c 2>stderr && { cat stderr >&2; exit 1; } - cat stderr >&2 - grep 'test: ' stderr && exit 1 - # Skip tests if the file system is not capable. - mkdir ./$c || continue - rmdir ./$c - ./install-sh -d $c/$c/$c - rm -rf ./$c - ./install-sh -d $c d5/$c/$c - test -d ./$c - test -d d5/$c/$c - ./install-sh x $c - test -f ./$c/x - rm -f ./$c/x - ./install-sh -t $c x - test -f ./$c/x - rm -rf ./$c - ( : > ./$c ) || continue - ./install-sh $c x d5/$c/$c - test -f d5/$c/$c/x - test -f d5/$c/$c/$c - rm -f d5/$c/$c/? - ./install-sh -t d5/$c/$c $c x - test -f d5/$c/$c/x - test -f d5/$c/$c/$c -done - -: diff --git a/t/instsh3.sh b/t/instsh3.sh deleted file mode 100644 index a53e21df7..000000000 --- a/t/instsh3.sh +++ /dev/null @@ -1,45 +0,0 @@ -#! /bin/sh -# Copyright (C) 2006-2013 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 . - -# More install-sh checks: check -C. - -am_create_testdir=empty -required=non-root -. test-init.sh - -# Solaris /usr/ucb/touch does not accept -t. -touch -t "$old_timestamp" foo \ - || skip_ "touch utility doesn't accept '-t' option" - -get_shell_script install-sh - -./install-sh -d d1 - -# Do not change the timestamps when using -C. -echo foo >file -./install-sh -C file d1 -TZ=UTC0 touch -t $old_timestamp d1/file -./install-sh -C file d1 -is_newest file d1/file -echo foo1 >file -./install-sh -C file d1 -diff file d1/file -# Rights must be updated. -./install-sh -C -m 444 file d1 -test -r d1/file -test ! -w d1/file - -: diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index 66b1220c6..54afd8f56 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -514,12 +514,12 @@ t/hfs.sh \ t/implicit.sh \ t/init.sh \ t/init2.sh \ -t/insh2.sh \ +t/dist-install-sh.sh \ t/dist-with-unreadable-makefile-fails.sh \ t/installdir.sh \ -t/instsh.sh \ -t/instsh2.sh \ -t/instsh3.sh \ +t/add-missing-install-sh.sh \ +t/install-sh-unittests.sh \ +t/install-sh-option-C.sh \ t/instdat.sh \ t/instdat2.sh \ t/instdir.sh \ -- cgit v1.2.1 From 222337e60bfc87456773a4c7cbbbd3192fde956d Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Thu, 26 Dec 2013 00:07:27 +0100 Subject: install-sh: be stricter in catching invalid usages Such usages (which are rejected by GNU install as well) are: - options -d and -t used together; - argument passed to option -t must be a directory; - if there are two or more SOURCEFILE arguments, the DESTINATION argument must be a directory. Note that we still allow the use of options -d and -T together, by making -d take the precedence; this is for compatibility with GNU install. This change fixes, among other things, automake bug#15376. * lib/install-sh: Adjust. * t/install-sh-unittests.sh: Enhance. * NEWS: Update. * THANKS: Add reporter of bug#15376. Helped-by: Tobias Hansen Signed-off-by: Stefano Lattarini --- NEWS | 13 +++++++++--- THANKS | 1 + lib/install-sh | 31 ++++++++++++++++++++++----- t/install-sh-unittests.sh | 54 ++++++++++++++++++++++++++++++++--------------- 4 files changed, 74 insertions(+), 25 deletions(-) diff --git a/NEWS b/NEWS index a6e197946..8d902c07c 100644 --- a/NEWS +++ b/NEWS @@ -64,15 +64,22 @@ New in 1.15: -* Cleanups and modernizations: +* Improvements and refactorings in the install-sh script: - - The install-sh script has been modernized, and now makes the following - assumptions *unconditionally*: + - It has been modernized, and now makes the following assumptions + *unconditionally*: (1) a working 'dirname' program is available; (2) the ${var:-value} shell parameters substitution works; (3) the "set -f" and "set +f" shell commands work, and, respectively, disable and enable shell globbing. + - The script implements stricter error checking, an it will now complain + and bail out if: + (1) the options -d and -t are used together; + (2) the argument passed to option -t must be a directory; + (3) if there are two or more SOURCEFILE arguments, the + DESTINATION argument must be a directory. + * Automake-generated testsuites: - The default test-driver used by the Automake-generates testsuites now diff --git a/THANKS b/THANKS index e4f70f322..2b4f8eeec 100644 --- a/THANKS +++ b/THANKS @@ -401,6 +401,7 @@ Tim Mooney mooney@dogbert.cc.ndsu.NoDak.edu Tim Retout diocles@debian.org Tim Rice tim@multitalents.net Tim Van Holder tim.van.holder@pandora.be +Tobias Hansen thansen@debian.org Toshio Kuratomi toshio@tiki-lounge.com Tom Epperly tepperly@llnl.gov Tom Rini tom_rini@mentor.com diff --git a/lib/install-sh b/lib/install-sh index 043673775..d8de87f30 100755 --- a/lib/install-sh +++ b/lib/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2013-10-30.23; # UTC +scriptversion=2013-12-25.23; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -82,7 +82,7 @@ dir_arg= dst_arg= copy_on_change=false -no_target_directory= +is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE @@ -139,14 +139,16 @@ while test $# -ne 0; do -s) stripcmd=$stripprog;; - -t) dst_arg=$2 + -t) + is_target_a_directory=always + dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; - -T) no_target_directory=true;; + -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; @@ -161,6 +163,16 @@ while test $# -ne 0; do shift done +# We allow the use of options -d and -T together, by making -d +# take the precedence; this is for compatibility with GNU install. + +if test -n "$dir_arg"; then + if test -n "$dst_arg"; then + echo "$0: target directory not allowed when installing a directory." >&2 + exit 1 + fi +fi + if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. @@ -181,6 +193,15 @@ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then done fi +if test -z "$dir_arg"; then + if test $# -gt 1 || test "$is_target_a_directory" = always; then + if test ! -d "$dst_arg"; then + echo "$0: $dst_arg: Is not a directory." >&2 + exit 1 + fi + fi +fi + if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 @@ -253,7 +274,7 @@ do # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then - if test -n "$no_target_directory"; then + if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi diff --git a/t/install-sh-unittests.sh b/t/install-sh-unittests.sh index 8a60d7435..1b85c9ce3 100644 --- a/t/install-sh-unittests.sh +++ b/t/install-sh-unittests.sh @@ -25,26 +25,46 @@ get_shell_script install-sh ./install-sh && exit 1 ./install-sh -m 644 dest && exit 1 -# Directories. +# Incorrect usages. +: > bar +: > baz +: > qux +./install-sh -d -t foo && exit 1 +./install-sh -d -t foo bar && exit 1 +./install-sh -t foo bar && exit 1 +./install-sh bar baz foo && exit 1 +mkdir foo +./install-sh -d -t foo && exit 1 +./install-sh -d -t foo bar && exit 1 +rmdir foo +rm -f bar baz qux -# It should be OK to create no directory. We sometimes need -# this when directory are conditionally defined. -./install-sh -d -# One directory. -./install-sh -d d0 -test -d d0 -# Multiple directories (for make installdirs). -./install-sh -d d1 d2 d3 d4 -test -d d1 -test -d d2 -test -d d3 -test -d d4 -# Subdirectories. -./install-sh -d p1/p2/p3 p4//p5//p6// -test -d p1/p2/p3 -test -d p4/p5/p6 +# Directories. +for opts in '-d' '-d -T' '-T -d' '-d -T -d' '-T -d -T -d -T'; do + # It should be OK to create no directory. We sometimes need + # this when directory are conditionally defined. + ./install-sh $opts + # One directory. + ./install-sh $opts d0 + test -d d0 + # Multiple directories (for make installdirs). + ./install-sh $opts d1 d2 d3 d4 + test -d d1 + test -d d2 + test -d d3 + test -d d4 + rmdir d[0-9] + # Subdirectories. + ./install-sh $opts p1/p2/p3 p4//p5//p6// + test -d p1/p2/p3 + test -d p4/p5/p6 + rmdir p[0-9]/p[0-9]/p[0-9] + rmdir p[0-9]/p[0-9] + rmdir p[0-9] +done # Files. +mkdir d0 d1 d2 d3 d4 : > x ./install-sh -c -m 644 x y test -f x -- cgit v1.2.1 From 3dd26cf0809384a80586113656fad0a4983a2a26 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Thu, 26 Dec 2013 00:33:05 +0100 Subject: install-sh: a slightly better diagnostic, and tests enhancements * lib/install-sh: When called with no non-option arguments and the '-t' option with an argument that is not an existing directory, have the diagnostic output complain about the lack of required arguments rather than about the bad argument passed to '-t'. * t/install-sh-unittests.sh: Enhance to also check diagnostic printed in cases of expected failure. Signed-off-by: Stefano Lattarini --- lib/install-sh | 18 +++++++++--------- t/install-sh-unittests.sh | 38 ++++++++++++++++++++++++++------------ 2 files changed, 35 insertions(+), 21 deletions(-) diff --git a/lib/install-sh b/lib/install-sh index d8de87f30..0b0fdcbba 100755 --- a/lib/install-sh +++ b/lib/install-sh @@ -193,15 +193,6 @@ if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then done fi -if test -z "$dir_arg"; then - if test $# -gt 1 || test "$is_target_a_directory" = always; then - if test ! -d "$dst_arg"; then - echo "$0: $dst_arg: Is not a directory." >&2 - exit 1 - fi - fi -fi - if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 @@ -212,6 +203,15 @@ if test $# -eq 0; then exit 0 fi +if test -z "$dir_arg"; then + if test $# -gt 1 || test "$is_target_a_directory" = always; then + if test ! -d "$dst_arg"; then + echo "$0: $dst_arg: Is not a directory." >&2 + exit 1 + fi + fi +fi + if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 diff --git a/t/install-sh-unittests.sh b/t/install-sh-unittests.sh index 1b85c9ce3..dff0c51ba 100644 --- a/t/install-sh-unittests.sh +++ b/t/install-sh-unittests.sh @@ -19,23 +19,37 @@ am_create_testdir=empty . test-init.sh +install_sh_fail () +{ + err_rx=$1; shift + ./install-sh ${1+"$@"} 2>stderr && { cat stderr >&2; exit 1; } + cat stderr >&2 + $EGREP "install-sh:.* $err_rx" stderr || exit 1 +} + get_shell_script install-sh # Basic errors. -./install-sh && exit 1 -./install-sh -m 644 dest && exit 1 +install_sh_fail 'no input file specified' +install_sh_fail 'no input file specified' dest +install_sh_fail 'no input file specified' -m 644 dest +install_sh_fail 'no input file specified' -c -t dest # Incorrect usages. : > bar : > baz : > qux -./install-sh -d -t foo && exit 1 -./install-sh -d -t foo bar && exit 1 -./install-sh -t foo bar && exit 1 -./install-sh bar baz foo && exit 1 +install_sh_fail 'target directory not allowed when installing a directory' \ + -d -t foo +install_sh_fail 'target directory not allowed when installing a directory' \ + -d -t foo bar +install_sh_fail 'foo: [iI]s not a directory' -t foo bar +install_sh_fail 'foo: [iI]s not a directory' bar baz foo mkdir foo -./install-sh -d -t foo && exit 1 -./install-sh -d -t foo bar && exit 1 +install_sh_fail 'target directory not allowed when installing a directory' \ + -d -t foo +install_sh_fail 'target directory not allowed when installing a directory' \ + -d -t foo bar rmdir foo rm -f bar baz qux @@ -96,8 +110,8 @@ test -f d4/z ./install-sh -T x d3/y test -f x test -f d3/y -./install-sh -T x d3 && exit 1 -./install-sh -T x d4// && exit 1 +install_sh_fail 'd3: [iI]s a directory' -T x d3 +install_sh_fail 'd4(//)?: [iI]s a directory' -T x d4// # Ensure that install-sh works with names that include spaces. touch 'a b' @@ -108,8 +122,8 @@ test -f 'a b' # Ensure we do not run into 'test' operator precedence bugs with Tru64 sh. for c in = '(' ')' '!'; do - ./install-sh $c 2>stderr && { cat stderr >&2; exit 1; } - cat stderr >&2 + install_sh_fail 'no input file specified' $c + test -f stderr # sanity check grep 'test: ' stderr && exit 1 # Skip tests if the file system is not capable. mkdir ./$c || continue -- cgit v1.2.1 From 50a08a2bc300d600603cdb5b5756baf71b9b431a Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Thu, 26 Dec 2013 15:46:13 +0100 Subject: docs: make clear the JAVA primary is frozen * doc/automake.texi: Here. The JAVA primary is broken in several ways, and will no longer be developed, not even for bug fixes. See also automake bugs #9088, #8662 and #8540. Signed-off-by: Stefano Lattarini --- doc/automake.texi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/automake.texi b/doc/automake.texi index 91b4a0a7d..6d90182d6 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -7598,7 +7598,9 @@ native machine code; @pxref{Java Support with gcj}). Note however that Future Automake releases will strive to provide a better and cleaner interface, which however @emph{won't be backward-compatible}; the present interface will probably be removed altogether some time after the -introduction of the new interface (if that ever materializes). +introduction of the new interface (if that ever materializes). In any +case, the current @code{JAVA} primary features are frozen and will no +longer be developed, not even to take bug fixes. Any @file{.java} files listed in a @code{_JAVA} variable will be compiled with @code{JAVAC} at build time. By default, @file{.java} -- cgit v1.2.1 From 09cbe67d3a5fea8774d529f41577e32b4b1ba81c Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Thu, 26 Dec 2013 16:52:06 +0100 Subject: tests: fix a spurious failure on Mac OS X This change fixes bug#14706. * lib/depcomp2.sh: Also cater to spurious diagnostic from GNU rm, not only from Apple's rm. Signed-off-by: Stefano Lattarini --- t/depcomp2.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/depcomp2.sh b/t/depcomp2.sh index 3eba12d6c..3baaebfdd 100644 --- a/t/depcomp2.sh +++ b/t/depcomp2.sh @@ -47,7 +47,7 @@ $AUTOCONF cat stderr >&2 # Ignore warning messages sometimes seen on Mac OS X; they are # not automake's fault anyway, but either autoconf's or Mac's. -sed '/rm:.* conftest\.dSYM/d' stderr >stderr2 +sed '/rm:.*conftest\.dSYM/d' stderr >stderr2 test -s stderr2 && { cat stderr2; exit 1; } : -- cgit v1.2.1 From c020f1ef664e1ec835d856ec5485769d0a9a7386 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Thu, 26 Dec 2013 17:05:27 +0100 Subject: cosmetics: remove a couple of extra trailing white spaces Signed-off-by: Stefano Lattarini --- t/Makefile.inc | 2 +- t/install-sh-unittests.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/Makefile.inc b/t/Makefile.inc index b67f3a581..b9dd5e0e0 100644 --- a/t/Makefile.inc +++ b/t/Makefile.inc @@ -33,7 +33,7 @@ TAP_LOG_DRIVER = AM_TAP_AWK='$(AWK)' $(SHELL) $(srcdir)/lib/tap-driver.sh AM_TAP_LOG_DRIVER_FLAGS = --merge EXTRA_DIST += %D%/README %D%/ax/is %D%/ax/is_newest %D%/ax/deltree.pl - + ## Will be updated later. TESTS = diff --git a/t/install-sh-unittests.sh b/t/install-sh-unittests.sh index dff0c51ba..98c711c85 100644 --- a/t/install-sh-unittests.sh +++ b/t/install-sh-unittests.sh @@ -19,7 +19,7 @@ am_create_testdir=empty . test-init.sh -install_sh_fail () +install_sh_fail () { err_rx=$1; shift ./install-sh ${1+"$@"} 2>stderr && { cat stderr >&2; exit 1; } -- cgit v1.2.1 From f0a7083afefe98aa7aecf4ece592915395947631 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Thu, 26 Dec 2013 19:31:15 +0100 Subject: Allow user to extend .PRECIOUS target References: * bin/automake.in: Adjust to ensure we handle '.PRECIOUS' the same way we do for '.PHONY' and '.MAKE'. * lib/Automake/Rule.pm: Likewise. * t/precious.sh: New test. * t/list-of-tests.mk: Add it. * t/phony.sh: Enhance a little while at it. * NEWS: Update. * THANKS: Likewise. Reported-by: Holger Hans Peter Freyther Signed-off-by: Stefano Lattarini --- NEWS | 5 +++++ THANKS | 1 + bin/automake.in | 4 ++-- lib/Automake/Rule.pm | 2 +- t/list-of-tests.mk | 1 + t/phony.sh | 1 + t/precious.sh | 32 ++++++++++++++++++++++++++++++++ 7 files changed, 43 insertions(+), 3 deletions(-) create mode 100644 t/precious.sh diff --git a/NEWS b/NEWS index 8d902c07c..dd2812a82 100644 --- a/NEWS +++ b/NEWS @@ -93,6 +93,11 @@ New in 1.15: implementation of the TAP driver (that is documented in the manual) is more portable and has feature parity with the perl implementation. +* Bug fixes: + + - The user can now extend the special .PRECIOUS target, the same way + he could already do with the .MAKE .and .PHONY targets. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ New in 1.14.1: diff --git a/THANKS b/THANKS index 2b4f8eeec..58dac98a9 100644 --- a/THANKS +++ b/THANKS @@ -152,6 +152,7 @@ Harlan Stenn Harlan.Stenn@pfcs.com He Li tippa000@yahoo.com Henrik Frystyk Nielsen frystyk@w3.org Hib Eris hib@hiberis.nl +Holger Hans Peter Freyther holger@freyther.de Ian Lance Taylor ian@cygnus.com Ignacy Gawedzki i@lri.fr Илья Н. Голубев gin@mo.msk.ru diff --git a/bin/automake.in b/bin/automake.in index 283d1bbfe..880830022 100644 --- a/bin/automake.in +++ b/bin/automake.in @@ -4645,9 +4645,9 @@ sub handle_factored_dependencies () # to append dependencies. This would not work if Automake # refrained from defining its own .PHONY target as it does # with other overridden targets. - # Likewise for '.MAKE'. + # Likewise for '.MAKE' and '.PRECIOUS'. my @undefined_conds = (TRUE,); - if ($_ ne '.PHONY' && $_ ne '.MAKE') + if ($_ ne '.PHONY' && $_ ne '.MAKE' && $_ ne '.PRECIOUS') { @undefined_conds = Automake::Rule::define ($_, 'internal', diff --git a/lib/Automake/Rule.pm b/lib/Automake/Rule.pm index a28a78d36..522700902 100644 --- a/lib/Automake/Rule.pm +++ b/lib/Automake/Rule.pm @@ -340,8 +340,8 @@ sub reset() # Tarballing. 'dist-all' => [], - # Phonying. '.PHONY' => [], + '.PRECIOUS' => [], # Recursive install targets (so "make -n install" works for BSD Make). '.MAKE' => [], ); diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index 54afd8f56..a9694d816 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -838,6 +838,7 @@ t/percent.sh \ t/percent2.sh \ t/per-target-flags.sh \ t/phony.sh \ +t/precious.sh \ t/pluseq.sh \ t/pluseq2.sh \ t/pluseq3.sh \ diff --git a/t/phony.sh b/t/phony.sh index dd0c54a3f..a63277618 100644 --- a/t/phony.sh +++ b/t/phony.sh @@ -26,6 +26,7 @@ EOF $ACLOCAL $AUTOMAKE +$FGREP '.PHONY:' Makefile.in # For debugging. test $($FGREP -c '.PHONY:' Makefile.in) -eq 3 : diff --git a/t/precious.sh b/t/precious.sh new file mode 100644 index 000000000..875030530 --- /dev/null +++ b/t/precious.sh @@ -0,0 +1,32 @@ +#!/bin/sh +# Copyright (C) 2013 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 . + +# Make sure .PRECIOUS can be extended by the user, and can be given +# dependencies several times. + +. test-init.sh + +cat >Makefile.am << 'EOF' +.PRECIOUS: foo +.PRECIOUS: bar +EOF + +$ACLOCAL +$AUTOMAKE +$FGREP '.PRECIOUS:' Makefile.in # For debugging. +test $($FGREP -c '.PRECIOUS:' Makefile.in) -eq 3 + +: -- cgit v1.2.1 From ad9804e1b825ddb304bfaf62b7108f2b6e08dc81 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Mon, 30 Dec 2013 23:21:03 +0100 Subject: parallel-tests: avoid possible implicit "make all" in test-suite.log rule This change fixes automake bug#16302. * lib/am/check.am ($(TEST_SUITE_LOG)): Avoid running "make $redo_logs" when $redo_logs expands to empty, since in that case we are actually ending up invoking a full "make all". That shouldn't be required, and can cause slowdowns for people implementing their extra "laziness wrappers" around check-TESTS (automake bug#16302). * NEWS: Update. Signed-off-by: Stefano Lattarini --- NEWS | 4 ++++ lib/am/check.am | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index dd2812a82..a73804a39 100644 --- a/NEWS +++ b/NEWS @@ -93,6 +93,10 @@ New in 1.15: implementation of the TAP driver (that is documented in the manual) is more portable and has feature parity with the perl implementation. + - The rule generating 'test-suite.log' no longer risk incurring in an + extra useless "make all" recursive invocation in some corner cases + (automake bug#16302). + * Bug fixes: - The user can now extend the special .PRECIOUS target, the same way diff --git a/lib/am/check.am b/lib/am/check.am index 7012d5a2b..4d2a498a3 100644 --- a/lib/am/check.am +++ b/lib/am/check.am @@ -274,7 +274,9 @@ $(TEST_SUITE_LOG): $(TEST_LOGS) if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ - else \ +## Invoking this unconditionally could cause a useless "make all" to +## be invoked when '$redo_logs' expands to empty (automake bug#16302). + elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ -- cgit v1.2.1 From accb12f10f84f1439590eb4743457b13b3ff9919 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 31 Dec 2013 01:16:12 +0100 Subject: NEWS: a typofix, and better word wrapping Signed-off-by: Stefano Lattarini --- NEWS | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index a73804a39..c863f0ed4 100644 --- a/NEWS +++ b/NEWS @@ -82,9 +82,9 @@ New in 1.15: * Automake-generated testsuites: - - The default test-driver used by the Automake-generates testsuites now - append the result and exit status of each "plain" test to the associated - log file (automake bug#118149). + - The default test-driver used by the Automake-generates testsuites + now append the result and exit status of each "plain" test to the + associated log file (automake bug#11814). - The perl implementation of the TAP testsuite driver is no longer installed in the Automake's scripts directory, and is instead just -- cgit v1.2.1 From 3a851d6432589782cf47746443da922db3bf280a Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Mon, 21 Apr 2014 10:22:29 +0100 Subject: Typofixes in warning messages and manual Fixes automake bug#16827 and bug#16997. Signed-off-by: Stefano Lattarini --- NEWS | 3 +++ THANKS | 1 + doc/automake.texi | 2 +- lib/am/distdir.am | 8 ++++---- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index c863f0ed4..9fbd3ca3f 100644 --- a/NEWS +++ b/NEWS @@ -102,6 +102,9 @@ New in 1.15: - The user can now extend the special .PRECIOUS target, the same way he could already do with the .MAKE .and .PHONY targets. + - Fixed confusing typos in the manual and in some warning messages + (automake bug#16827 and bug#16997). + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ New in 1.14.1: diff --git a/THANKS b/THANKS index 58dac98a9..550b565e8 100644 --- a/THANKS +++ b/THANKS @@ -6,6 +6,7 @@ Adam J. Richter adam@yggdrasil.com Adam Mercer ramercer@gmail.com Adam Sampson ats@offog.org Adrian Bunk bunk@fs.tum.de +Aharon Robbins arnold@skeeve.com Akim Demaille akim@gnu.org Alan Modra amodra@bigpond.net.au Alex Hornby alex@anvil.co.uk diff --git a/doc/automake.texi b/doc/automake.texi index d9083a0b2..8b92e1c46 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -9144,7 +9144,7 @@ and @samp{./wrapper-script -d baz} to produce @file{foo.log}, as a side-effect. It's important to note that, differently from what we've seen for the -serial test harness (@pxref{Parallel Test Harness}), the +serial test harness (@pxref{Serial Test Harness}), the @code{AM_TESTS_ENVIRONMENT} and @code{TESTS_ENVIRONMENT} variables @emph{cannot} be use to define a custom test runner; the @code{LOG_COMPILER} and @code{LOG_FLAGS} (or their extension-specific diff --git a/lib/am/distdir.am b/lib/am/distdir.am index a8ad63cef..f26a857e1 100644 --- a/lib/am/distdir.am +++ b/lib/am/distdir.am @@ -339,8 +339,8 @@ dist-xz: distdir ?COMPRESS?DIST_ARCHIVES += $(distdir).tar.Z .PHONY: dist-tarZ dist-tarZ: distdir - @echo WARNING: "Support for shar distribution archives is" \ - "deprecated." >&2 + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) @@ -348,8 +348,8 @@ dist-tarZ: distdir ?SHAR?DIST_ARCHIVES += $(distdir).shar.gz .PHONY: dist-shar dist-shar: distdir - @echo WARNING: "Support for distribution archives compressed with" \ - "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) -- cgit v1.2.1 From 9459625acb96929eb7c31b101bd60293ae111799 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Mon, 21 Apr 2014 15:08:34 +0100 Subject: maint: sync files from upstream ("make fetch") Signed-off-by: Stefano Lattarini --- lib/config.guess | 164 +++--------------------------------------------- lib/config.sub | 15 ++--- lib/gitlog-to-changelog | 2 +- lib/gnupload | 2 +- lib/update-copyright | 2 +- 5 files changed, 17 insertions(+), 168 deletions(-) diff --git a/lib/config.guess b/lib/config.guess index 9afd67620..1f5c50c0d 100755 --- a/lib/config.guess +++ b/lib/config.guess @@ -1,8 +1,8 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 1992-2013 Free Software Foundation, Inc. +# Copyright 1992-2014 Free Software Foundation, Inc. -timestamp='2013-11-29' +timestamp='2014-03-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -50,7 +50,7 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright 1992-2013 Free Software Foundation, Inc. +Copyright 1992-2014 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -149,7 +149,7 @@ Linux|GNU|GNU/*) LIBC=gnu #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` ;; esac @@ -826,7 +826,7 @@ EOF *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; - i*:MSYS*:*) + *:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) @@ -969,10 +969,10 @@ EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; - or1k:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-${LIBC} + openrisc*:Linux:*:*) + echo or1k-unknown-linux-${LIBC} exit ;; - or32:Linux:*:*) + or32:Linux:*:* | or1k*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) @@ -1371,154 +1371,6 @@ EOF exit ;; esac -eval $set_cc_for_build -cat >$dummy.c < -# include -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) - /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, - I don't know.... */ - printf ("mips-sony-bsd\n"); exit (0); -#else -#include - printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 - "4" -#else - "" -#endif - ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix\n"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) - printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif - int version; - version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; - if (version < 4) - printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); - else - printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); - exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) - printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) - printf ("ns32k-encore-mach\n"); exit (0); -#else - printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) - printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) - printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) - printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) - struct utsname un; - - uname(&un); - - if (strncmp(un.version, "V2", 2) == 0) { - printf ("i386-sequent-ptx2\n"); exit (0); - } - if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ - printf ("i386-sequent-ptx1\n"); exit (0); - } - printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -# include -# if defined (BSD) -# if BSD == 43 - printf ("vax-dec-bsd4.3\n"); exit (0); -# else -# if BSD == 199006 - printf ("vax-dec-bsd4.3reno\n"); exit (0); -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# endif -# else - printf ("vax-dec-bsd\n"); exit (0); -# endif -# else - printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) - printf ("i860-alliant-bsd\n"); exit (0); -#endif - - exit (1); -} -EOF - -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && - { echo "$SYSTEM_NAME"; exit; } - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then - case `getsysinfo -f cpu_type` in - c1*) - echo c1-convex-bsd - exit ;; - c2*) - if getsysinfo -f scalar_acc - then echo c32-convex-bsd - else echo c2-convex-bsd - fi - exit ;; - c34*) - echo c34-convex-bsd - exit ;; - c38*) - echo c38-convex-bsd - exit ;; - c4*) - echo c4-convex-bsd - exit ;; - esac -fi - cat >&2 <." version="\ GNU config.sub ($timestamp) -Copyright 1992-2013 Free Software Foundation, Inc. +Copyright 1992-2014 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -296,8 +296,7 @@ case $basic_machine in | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ - | open8 \ - | or1k | or32 \ + | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ @@ -415,6 +414,7 @@ case $basic_machine in | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ + | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ @@ -1376,7 +1376,7 @@ case $os in | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1594,9 +1594,6 @@ case $basic_machine in mips*-*) os=-elf ;; - or1k-*) - os=-elf - ;; or32-*) os=-coff ;; diff --git a/lib/gitlog-to-changelog b/lib/gitlog-to-changelog index e02d34c21..78afff4e8 100755 --- a/lib/gitlog-to-changelog +++ b/lib/gitlog-to-changelog @@ -9,7 +9,7 @@ my $VERSION = '2012-07-29 06:11'; # UTC # If you change this file with Emacs, please let the write hook # do its job. Otherwise, update this string manually. -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/lib/gnupload b/lib/gnupload index e3ac1ba0c..0832e16c9 100755 --- a/lib/gnupload +++ b/lib/gnupload @@ -3,7 +3,7 @@ scriptversion=2013-03-19.17; # UTC -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/lib/update-copyright b/lib/update-copyright index c72d0e67d..90624e900 100755 --- a/lib/update-copyright +++ b/lib/update-copyright @@ -5,7 +5,7 @@ eval '(exit $?0)' && eval 'exec perl -wS -0777 -pi "$0" ${1+"$@"}' my $VERSION = '2013-01-03.09:41'; # UTC -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 -- cgit v1.2.1 From a78f63c5d54abe8ba020083aa665e62281c80ae9 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Mon, 21 Apr 2014 15:10:54 +0100 Subject: maint: update copyright years We've been in 2014 already for few months now... Signed-off-by: Stefano Lattarini --- GNUmakefile | 2 +- HACKING | 2 +- Makefile.am | 2 +- NEWS | 2 +- bin/Makefile.inc | 2 +- bin/aclocal.in | 2 +- bin/automake.in | 2 +- bin/gen-perl-protos | 2 +- bootstrap.sh | 4 ++-- configure.ac | 4 ++-- contrib/check-html.am | 2 +- contrib/multilib/config-ml.in | 2 +- contrib/multilib/multi.m4 | 2 +- contrib/multilib/multilib.am | 2 +- contrib/multilib/symlink-tree | 2 +- contrib/t/Makefile.inc | 2 +- contrib/t/help-multilib.sh | 2 +- contrib/t/multilib.sh | 2 +- contrib/t/parallel-tests-html-recursive.sh | 2 +- contrib/t/parallel-tests-html.sh | 2 +- contrib/tap-driver.pl | 2 +- doc/Makefile.inc | 2 +- doc/amhello/Makefile.am | 2 +- doc/amhello/configure.ac | 2 +- doc/amhello/src/Makefile.am | 2 +- doc/amhello/src/main.c | 2 +- doc/automake-history.texi | 2 +- doc/automake.texi | 2 +- doc/fdl.texi | 2 +- doc/help2man | 2 +- gen-testsuite-part | 2 +- lib/Automake/ChannelDefs.pm | 2 +- lib/Automake/Channels.pm | 2 +- lib/Automake/Condition.pm | 2 +- lib/Automake/Config.in | 2 +- lib/Automake/Configure_ac.pm | 2 +- lib/Automake/DisjConditions.pm | 2 +- lib/Automake/FileUtils.pm | 2 +- lib/Automake/General.pm | 2 +- lib/Automake/Getopt.pm | 2 +- lib/Automake/Item.pm | 2 +- lib/Automake/ItemDef.pm | 2 +- lib/Automake/Language.pm | 2 +- lib/Automake/Location.pm | 2 +- lib/Automake/Makefile.inc | 2 +- lib/Automake/Options.pm | 2 +- lib/Automake/Rule.pm | 2 +- lib/Automake/RuleDef.pm | 2 +- lib/Automake/VarDef.pm | 2 +- lib/Automake/Variable.pm | 2 +- lib/Automake/Version.pm | 2 +- lib/Automake/Wrap.pm | 2 +- lib/Automake/XFile.pm | 2 +- lib/Makefile.inc | 2 +- lib/am/Makefile.inc | 2 +- lib/am/check.am | 2 +- lib/am/check2.am | 2 +- lib/am/clean-hdr.am | 2 +- lib/am/clean.am | 2 +- lib/am/compile.am | 2 +- lib/am/configure.am | 2 +- lib/am/data.am | 2 +- lib/am/dejagnu.am | 2 +- lib/am/depend.am | 2 +- lib/am/depend2.am | 2 +- lib/am/distdir.am | 2 +- lib/am/footer.am | 2 +- lib/am/header-vars.am | 2 +- lib/am/header.am | 2 +- lib/am/inst-vars.am | 2 +- lib/am/install.am | 2 +- lib/am/java.am | 2 +- lib/am/lang-compile.am | 2 +- lib/am/lex.am | 2 +- lib/am/library.am | 2 +- lib/am/libs.am | 2 +- lib/am/libtool.am | 2 +- lib/am/lisp.am | 2 +- lib/am/ltlib.am | 2 +- lib/am/ltlibrary.am | 2 +- lib/am/mans-vars.am | 2 +- lib/am/mans.am | 2 +- lib/am/program.am | 2 +- lib/am/progs.am | 2 +- lib/am/python.am | 2 +- lib/am/remake-hdr.am | 2 +- lib/am/scripts.am | 2 +- lib/am/subdirs.am | 2 +- lib/am/tags.am | 2 +- lib/am/texi-vers.am | 2 +- lib/am/texibuild.am | 2 +- lib/am/texinfos.am | 2 +- lib/am/vala.am | 2 +- lib/am/yacc.am | 2 +- lib/ar-lib | 2 +- lib/compile | 2 +- lib/depcomp | 2 +- lib/mdate-sh | 2 +- lib/missing | 2 +- lib/py-compile | 2 +- lib/tap-driver.sh | 2 +- lib/test-driver | 2 +- lib/ylwrap | 2 +- m4/Makefile.inc | 2 +- m4/amversion.in | 2 +- m4/amversion.m4 | 2 +- m4/ar-lib.m4 | 2 +- m4/as.m4 | 2 +- m4/auxdir.m4 | 2 +- m4/cond-if.m4 | 2 +- m4/cond.m4 | 2 +- m4/depend.m4 | 2 +- m4/depout.m4 | 2 +- m4/dmalloc.m4 | 2 +- m4/extra-recurs.m4 | 2 +- m4/gcj.m4 | 2 +- m4/init.m4 | 2 +- m4/install-sh.m4 | 2 +- m4/internal/ac-config-macro-dirs.m4 | 2 +- m4/lead-dot.m4 | 2 +- m4/lex.m4 | 2 +- m4/lispdir.m4 | 2 +- m4/maintainer.m4 | 2 +- m4/make.m4 | 2 +- m4/missing.m4 | 2 +- m4/mkdirp.m4 | 2 +- m4/obsolete.m4 | 2 +- m4/options.m4 | 2 +- m4/prog-cc-c-o.m4 | 2 +- m4/python.m4 | 2 +- m4/runlog.m4 | 2 +- m4/sanity.m4 | 2 +- m4/silent.m4 | 2 +- m4/strip.m4 | 2 +- m4/substnot.m4 | 2 +- m4/tar.m4 | 2 +- m4/upc.m4 | 2 +- m4/vala.m4 | 2 +- maintainer/am-ft | 2 +- maintainer/am-xft | 2 +- maintainer/maint.mk | 2 +- maintainer/rename-tests | 2 +- maintainer/syntax-checks.mk | 2 +- old/ChangeLog-tests | 2 +- old/ChangeLog.00 | 2 +- old/ChangeLog.01 | 2 +- old/ChangeLog.02 | 2 +- old/ChangeLog.03 | 2 +- old/ChangeLog.04 | 2 +- old/ChangeLog.09 | 2 +- old/ChangeLog.11 | 2 +- old/ChangeLog.96 | 2 +- old/ChangeLog.98 | 2 +- old/TODO | 2 +- t/CheckListOfTests.am | 2 +- t/Makefile.inc | 2 +- t/ac-output-old.tap | 2 +- t/aclocal-I-and-install.sh | 2 +- t/aclocal-I-order-1.sh | 2 +- t/aclocal-I-order-2.sh | 2 +- t/aclocal-I-order-3.sh | 2 +- t/aclocal-acdir.sh | 2 +- t/aclocal-amflags.sh | 2 +- t/aclocal-autoconf-version-check.sh | 2 +- t/aclocal-comments-respected.sh | 2 +- t/aclocal-deleted-header-aclocal-amflags.sh | 2 +- t/aclocal-deleted-header.sh | 2 +- t/aclocal-deps-subdir.sh | 2 +- t/aclocal-deps.sh | 2 +- t/aclocal-dirlist-abspath.sh | 2 +- t/aclocal-dirlist-globbing.sh | 2 +- t/aclocal-dirlist.sh | 2 +- t/aclocal-install-absdir.sh | 2 +- t/aclocal-install-fail.sh | 2 +- t/aclocal-install-mkdir.sh | 2 +- t/aclocal-m4-include-are-scanned-aclocal-amflags.sh | 2 +- t/aclocal-m4-include-are-scanned.sh | 2 +- t/aclocal-m4-sinclude.sh | 2 +- t/aclocal-macrodir.tap | 2 +- t/aclocal-macrodirs.tap | 2 +- t/aclocal-missing-macros.sh | 2 +- t/aclocal-no-extra-scan.sh | 2 +- t/aclocal-no-force.sh | 2 +- t/aclocal-no-install-no-mkdir.sh | 2 +- t/aclocal-no-symlinked-overwrite.sh | 2 +- t/aclocal-no-unused-required.sh | 2 +- t/aclocal-path-install-serial.sh | 2 +- t/aclocal-path-install.sh | 2 +- t/aclocal-path-nonexistent.sh | 2 +- t/aclocal-path-precedence.sh | 2 +- t/aclocal-path.sh | 2 +- t/aclocal-pr450.sh | 2 +- t/aclocal-print-acdir.sh | 2 +- t/aclocal-remake-misc.sh | 2 +- t/aclocal-req.sh | 2 +- t/aclocal-scan-configure-ac-pr319.sh | 2 +- t/aclocal-serial.sh | 2 +- t/aclocal-underquoted-defun.sh | 2 +- t/aclocal-verbose-install.sh | 2 +- t/aclocal.sh | 2 +- t/acsilent.sh | 2 +- t/acsubst.sh | 2 +- t/acsubst2.sh | 2 +- t/add-missing-install-sh.sh | 2 +- t/add-missing-multiple.sh | 2 +- t/add-missing.tap | 2 +- t/all.sh | 2 +- t/all2.sh | 2 +- t/alloca.sh | 2 +- t/alloca2.sh | 2 +- t/alpha.sh | 2 +- t/alpha2.sh | 2 +- t/am-config-header.sh | 2 +- t/am-default-source-ext.sh | 2 +- t/am-macro-not-found.sh | 2 +- t/am-missing-prog.sh | 2 +- t/am-prog-cc-c-o.sh | 2 +- t/am-prog-cc-stdc.sh | 2 +- t/am-tests-environment.sh | 2 +- t/amassign.sh | 2 +- t/amhello-binpkg.sh | 2 +- t/amhello-cflags.sh | 2 +- t/amhello-cross-compile.sh | 2 +- t/aminit-moreargs-deprecation.sh | 2 +- t/amopt.sh | 2 +- t/amopts-location.sh | 2 +- t/amopts-variable-expansion.sh | 2 +- t/amsubst.sh | 2 +- t/ansi2knr-no-more.sh | 2 +- t/ar-lib.sh | 2 +- t/ar-lib2.sh | 2 +- t/ar-lib3.sh | 2 +- t/ar-lib4.sh | 2 +- t/ar-lib5a.sh | 2 +- t/ar-lib5b.sh | 2 +- t/ar-lib6a.sh | 2 +- t/ar-lib6b.sh | 2 +- t/ar-lib7.sh | 2 +- t/ar.sh | 2 +- t/ar2.sh | 2 +- t/ar3.sh | 2 +- t/ar4.sh | 2 +- t/ar5.sh | 2 +- t/asm.sh | 2 +- t/asm2.sh | 2 +- t/asm3.sh | 2 +- t/autodist-acconfig-no-subdir.sh | 2 +- t/autodist-acconfig.sh | 2 +- t/autodist-aclocal-m4.sh | 2 +- t/autodist-config-headers.sh | 2 +- t/autodist-configure-no-subdir.sh | 2 +- t/autodist-no-duplicate.sh | 2 +- t/autodist-stamp-vti.sh | 2 +- t/autodist-subdir.sh | 2 +- t/autodist.sh | 2 +- t/autohdr-subdir-pr12495.sh | 2 +- t/autohdr.sh | 2 +- t/autohdr3.sh | 2 +- t/autohdr4.sh | 2 +- t/autohdrdry.sh | 2 +- t/automake-cmdline.tap | 2 +- t/auxdir-autodetect.sh | 2 +- t/auxdir-computed.tap | 2 +- t/auxdir-misplaced.sh | 2 +- t/auxdir-nonexistent.sh | 2 +- t/auxdir-unportable.tap | 2 +- t/auxdir.sh | 2 +- t/auxdir6.sh | 2 +- t/auxdir7.sh | 2 +- t/auxdir8.sh | 2 +- t/ax/am-test-lib.sh | 2 +- t/ax/cc-no-c-o.in | 2 +- t/ax/deltree.pl | 2 +- t/ax/depcomp.sh | 2 +- t/ax/distcheck-hook-m4.am | 2 +- t/ax/extract-testsuite-summary.pl | 2 +- t/ax/is | 2 +- t/ax/is_newest | 2 +- t/ax/runtest.in | 2 +- t/ax/shell-no-trail-bslash.in | 2 +- t/ax/tap-functions.sh | 2 +- t/ax/tap-setup.sh | 2 +- t/ax/tap-summary-aux.sh | 2 +- t/ax/test-defs.in | 2 +- t/ax/test-init.sh | 2 +- t/ax/test-lib.sh | 2 +- t/ax/testsuite-summary-checks.sh | 2 +- t/ax/trivial-test-driver | 2 +- t/backcompat-acout.sh | 2 +- t/backcompat.sh | 2 +- t/backcompat2.sh | 2 +- t/backcompat3.sh | 2 +- t/backcompat6.sh | 2 +- t/backslash-before-trailing-whitespace.sh | 2 +- t/backslash-issues.sh | 2 +- t/badline.sh | 2 +- t/badopt.sh | 2 +- t/badprog.sh | 2 +- t/built-sources-check.sh | 2 +- t/built-sources-cond.sh | 2 +- t/built-sources-fork-bomb.sh | 2 +- t/built-sources-install.sh | 2 +- t/built-sources-subdir.sh | 2 +- t/built-sources.sh | 2 +- t/c-demo.sh | 2 +- t/candist.sh | 2 +- t/canon-name.sh | 2 +- t/canon.sh | 2 +- t/canon2.sh | 2 +- t/canon3.sh | 2 +- t/canon4.sh | 2 +- t/canon5.sh | 2 +- t/canon6.sh | 2 +- t/canon7.sh | 2 +- t/canon8.sh | 2 +- t/ccnoco-deps.sh | 2 +- t/ccnoco-lib.sh | 2 +- t/ccnoco-lt.sh | 2 +- t/ccnoco.sh | 2 +- t/ccnoco3.sh | 2 +- t/ccnoco4.sh | 2 +- t/check-concurrency-bug9245.sh | 2 +- t/check-exported-srcdir.sh | 2 +- t/check-fd-redirect.sh | 2 +- t/check-no-test-driver.sh | 2 +- t/check-subst-prog.sh | 2 +- t/check-subst.sh | 2 +- t/check-tests-in-builddir.sh | 2 +- t/check.sh | 2 +- t/check10.sh | 2 +- t/check11.sh | 2 +- t/check12.sh | 2 +- t/check2.sh | 2 +- t/check4.sh | 2 +- t/check5.sh | 2 +- t/check6.sh | 2 +- t/check7.sh | 2 +- t/check8.sh | 2 +- t/checkall.sh | 2 +- t/clean.sh | 2 +- t/colneq.sh | 2 +- t/colneq2.sh | 2 +- t/colneq3.sh | 2 +- t/colon.sh | 2 +- t/colon2.sh | 2 +- t/colon3.sh | 2 +- t/colon4.sh | 2 +- t/colon5.sh | 2 +- t/colon6.sh | 2 +- t/colon7.sh | 2 +- t/color-tests-opt.sh | 2 +- t/color-tests.sh | 2 +- t/color-tests2.sh | 2 +- t/commen10.sh | 2 +- t/commen11.sh | 2 +- t/comment-block.sh | 2 +- t/comment.sh | 2 +- t/comment2.sh | 2 +- t/comment3.sh | 2 +- t/comment4.sh | 2 +- t/comment5.sh | 2 +- t/comment6.sh | 2 +- t/comment7.sh | 2 +- t/comment8.sh | 2 +- t/comment9.sh | 2 +- t/comments-in-var-def.sh | 2 +- t/compile.sh | 2 +- t/compile2.sh | 2 +- t/compile3.sh | 2 +- t/compile4.sh | 2 +- t/compile5.sh | 2 +- t/compile6.sh | 2 +- t/compile_f90_c_cxx.sh | 2 +- t/compile_f_c_cxx.sh | 2 +- t/cond-basic.sh | 2 +- t/cond.sh | 2 +- t/cond10.sh | 2 +- t/cond11.sh | 2 +- t/cond13.sh | 2 +- t/cond14.sh | 2 +- t/cond15.sh | 2 +- t/cond16.sh | 2 +- t/cond17.sh | 2 +- t/cond18.sh | 2 +- t/cond19.sh | 2 +- t/cond20.sh | 2 +- t/cond21.sh | 2 +- t/cond22.sh | 2 +- t/cond23.sh | 2 +- t/cond24.sh | 2 +- t/cond25.sh | 2 +- t/cond26.sh | 2 +- t/cond27.sh | 2 +- t/cond28.sh | 2 +- t/cond3.sh | 2 +- t/cond30.sh | 2 +- t/cond31.sh | 2 +- t/cond32.sh | 2 +- t/cond33.sh | 2 +- t/cond34.sh | 2 +- t/cond35.sh | 2 +- t/cond36.sh | 2 +- t/cond37.sh | 2 +- t/cond38.sh | 2 +- t/cond39.sh | 2 +- t/cond4.sh | 2 +- t/cond40.sh | 2 +- t/cond41.sh | 2 +- t/cond42.sh | 2 +- t/cond43.sh | 2 +- t/cond44.sh | 2 +- t/cond45.sh | 2 +- t/cond46.sh | 2 +- t/cond5.sh | 2 +- t/cond6.sh | 2 +- t/cond7.sh | 2 +- t/cond8.sh | 2 +- t/cond9.sh | 2 +- t/condd.sh | 2 +- t/condhook.sh | 2 +- t/condhook2.sh | 2 +- t/condinc.sh | 2 +- t/condinc2.sh | 2 +- t/condlib.sh | 2 +- t/condman2.sh | 2 +- t/condman3.sh | 2 +- t/confdeps.sh | 2 +- t/conff.sh | 2 +- t/conff2.sh | 2 +- t/conffile-leading-dot.sh | 2 +- t/confh-subdir-clean.sh | 2 +- t/confh.sh | 2 +- t/confh4.sh | 2 +- t/confh5.sh | 2 +- t/confh6.sh | 2 +- t/confh7.sh | 2 +- t/confh8.sh | 2 +- t/configure.sh | 2 +- t/confincl.sh | 2 +- t/conflnk.sh | 2 +- t/conflnk2.sh | 2 +- t/conflnk3.sh | 2 +- t/conflnk4.sh | 2 +- t/confsub.sh | 2 +- t/confvar.sh | 2 +- t/confvar2.sh | 2 +- t/copy.sh | 2 +- t/cscope.tap | 2 +- t/cscope2.sh | 2 +- t/cscope3.sh | 2 +- t/cxx-demo.sh | 2 +- t/cxx-lt-demo.sh | 2 +- t/cxx.sh | 2 +- t/cxx2.sh | 2 +- t/cxxcpp.sh | 2 +- t/cxxlibobj.sh | 2 +- t/cxxlink.sh | 2 +- t/cxxnoc.sh | 2 +- t/cygnus-no-more.sh | 2 +- t/cygwin32.sh | 2 +- t/dash.sh | 2 +- t/defun.sh | 2 +- t/defun2.sh | 2 +- t/dejagnu-absolute-builddir.sh | 2 +- t/dejagnu-relative-srcdir.sh | 2 +- t/dejagnu-siteexp-append.sh | 2 +- t/dejagnu-siteexp-extend.sh | 2 +- t/dejagnu-siteexp-useredit.sh | 2 +- t/dejagnu.sh | 2 +- t/dejagnu2.sh | 2 +- t/dejagnu3.sh | 2 +- t/dejagnu4.sh | 2 +- t/dejagnu5.sh | 2 +- t/dejagnu6.sh | 2 +- t/dejagnu7.sh | 2 +- t/deleted-am.sh | 2 +- t/deleted-m4.sh | 2 +- t/depacl2.sh | 2 +- t/depcomp-implicit-auxdir.sh | 2 +- t/depcomp.sh | 2 +- t/depcomp2.sh | 2 +- t/depcomp8a.sh | 2 +- t/depcomp8b.sh | 2 +- t/depdist.sh | 2 +- t/depend.sh | 2 +- t/depend3.sh | 2 +- t/depend4.sh | 2 +- t/depend5.sh | 2 +- t/depend6.sh | 2 +- t/deprecated-acinit.sh | 2 +- t/destdir.sh | 2 +- t/dir-named-obj-is-bad.sh | 2 +- t/discover.sh | 2 +- t/dist-auxdir-many-subdirs.sh | 2 +- t/dist-auxfile-2.sh | 2 +- t/dist-auxfile.sh | 2 +- t/dist-formats.tap | 2 +- t/dist-included-parent-dir.sh | 2 +- t/dist-install-sh.sh | 2 +- t/dist-lzma.sh | 2 +- t/dist-missing-am.sh | 2 +- t/dist-missing-included-m4.sh | 2 +- t/dist-missing-m4.sh | 2 +- t/dist-pr109765.sh | 2 +- t/dist-readonly.sh | 2 +- t/dist-repeated.sh | 2 +- t/dist-shar.sh | 2 +- t/dist-tarZ.sh | 2 +- t/dist-with-unreadable-makefile-fails.sh | 2 +- t/distcheck-configure-flags-am.sh | 2 +- t/distcheck-configure-flags-subpkg.sh | 2 +- t/distcheck-configure-flags.sh | 2 +- t/distcheck-hook.sh | 2 +- t/distcheck-hook2.sh | 2 +- t/distcheck-missing-m4.sh | 2 +- t/distcheck-no-prefix-or-srcdir-override.sh | 2 +- t/distcheck-outdated-m4.sh | 2 +- t/distcheck-override-infodir.sh | 2 +- t/distcheck-pr10470.sh | 2 +- t/distcheck-pr9579.sh | 2 +- t/distcheck-writable-srcdir.sh | 2 +- t/distcleancheck.sh | 2 +- t/distcom-subdir.sh | 2 +- t/distcom2.sh | 2 +- t/distcom3.sh | 2 +- t/distcom4.sh | 2 +- t/distcom5.sh | 2 +- t/distdir.sh | 2 +- t/disthook.sh | 2 +- t/distlinks.sh | 2 +- t/distlinksbrk.sh | 2 +- t/distname.sh | 2 +- t/dmalloc.sh | 2 +- t/doc-parsing-buglets-colneq-subst.sh | 2 +- t/doc-parsing-buglets-tabs.sh | 2 +- t/dollar.sh | 2 +- t/dollarvar.sh | 2 +- t/dollarvar2.sh | 2 +- t/double.sh | 2 +- t/dup2.sh | 2 +- t/else.sh | 2 +- t/empty-data-primary.sh | 2 +- t/empty-sources-primary.tap | 2 +- t/exdir.sh | 2 +- t/exdir2.sh | 2 +- t/exdir3.sh | 2 +- t/exeext.sh | 2 +- t/exeext2.sh | 2 +- t/exeext3.sh | 2 +- t/exeext4.sh | 2 +- t/ext.sh | 2 +- t/ext2.sh | 2 +- t/ext3.sh | 2 +- t/extra-data.sh | 2 +- t/extra-deps-lt.sh | 2 +- t/extra-deps.sh | 2 +- t/extra-dist-dirs-and-subdirs.sh | 2 +- t/extra-dist-vpath-dir-merge.sh | 2 +- t/extra-dist-vpath-dir.sh | 2 +- t/extra-dist-wildcards-gnu.sh | 2 +- t/extra-dist-wildcards-vpath.sh | 2 +- t/extra-dist-wildcards.sh | 2 +- t/extra-portability.sh | 2 +- t/extra-portability2.sh | 2 +- t/extra-portability3.sh | 2 +- t/extra-programs-and-libs.sh | 2 +- t/extra-programs-empty.sh | 2 +- t/extra-programs-misc.sh | 2 +- t/extra-sources-no-spurious.sh | 2 +- t/extra-sources.sh | 2 +- t/extra.sh | 2 +- t/f90only.sh | 2 +- t/flavor.sh | 2 +- t/flibs.sh | 2 +- t/fn99.sh | 2 +- t/fn99subdir.sh | 2 +- t/fnoc.sh | 2 +- t/fonly.sh | 2 +- t/forcemiss.sh | 2 +- t/forcemiss2.sh | 2 +- t/fort1.sh | 2 +- t/fort2.sh | 2 +- t/fort4.sh | 2 +- t/fort5.sh | 2 +- t/fortdep.sh | 2 +- t/gcj.sh | 2 +- t/gcj2.sh | 2 +- t/gcj3.sh | 2 +- t/gcj4.sh | 2 +- t/gcj5.sh | 2 +- t/gcj6.sh | 2 +- t/get-sysconf.sh | 2 +- t/gettext-basics.sh | 2 +- t/gettext-config-rpath.sh | 2 +- t/gettext-external-pr338.sh | 2 +- t/gettext-intl-subdir.sh | 2 +- t/gettext-macros.sh | 2 +- t/gettext-pr381.sh | 2 +- t/gnits.sh | 2 +- t/gnits2.sh | 2 +- t/gnits3.sh | 2 +- t/gnumake.sh | 2 +- t/gnuwarn.sh | 2 +- t/gnuwarn2.sh | 2 +- t/hdr-vars-defined-once.sh | 2 +- t/header.sh | 2 +- t/help-depend.sh | 2 +- t/help-depend2.sh | 2 +- t/help-dmalloc.sh | 2 +- t/help-init.sh | 2 +- t/help-lispdir.sh | 2 +- t/help-python.sh | 2 +- t/help-silent.sh | 2 +- t/help-upc.sh | 2 +- t/help.sh | 2 +- t/help2.sh | 2 +- t/help3.sh | 2 +- t/help4.sh | 2 +- t/hfs.sh | 2 +- t/implicit.sh | 2 +- t/init.sh | 2 +- t/init2.sh | 2 +- t/install-info-dir.sh | 2 +- t/install-sh-option-C.sh | 2 +- t/install-sh-unittests.sh | 2 +- t/installdir.sh | 2 +- t/instdat.sh | 2 +- t/instdat2.sh | 2 +- t/instdir-cond.sh | 2 +- t/instdir-cond2.sh | 2 +- t/instdir-java.sh | 2 +- t/instdir-lisp.sh | 2 +- t/instdir-ltlib.sh | 2 +- t/instdir-no-empty.sh | 2 +- t/instdir-prog.sh | 2 +- t/instdir-python.sh | 2 +- t/instdir-texi.sh | 2 +- t/instdir.sh | 2 +- t/instdir2.sh | 2 +- t/instexec.sh | 2 +- t/instfail-info.sh | 2 +- t/instfail-java.sh | 2 +- t/instfail-libtool.sh | 2 +- t/instfail.sh | 2 +- t/insthook.sh | 2 +- t/instman.sh | 2 +- t/instman2.sh | 2 +- t/instmany-mans.sh | 2 +- t/instmany-python.sh | 2 +- t/instmany.sh | 2 +- t/instspc.tap | 2 +- t/interp.sh | 2 +- t/interp2.sh | 2 +- t/java-check.sh | 2 +- t/java-clean.sh | 2 +- t/java-compile-install.sh | 2 +- t/java-compile-run-flat.sh | 2 +- t/java-compile-run-nested.sh | 2 +- t/java-empty-classpath.sh | 2 +- t/java-extra.sh | 2 +- t/java-mix.sh | 2 +- t/java-no-duplicate.sh | 2 +- t/java-nobase.sh | 2 +- t/java-noinst.sh | 2 +- t/java-rebuild.sh | 2 +- t/java-sources.sh | 2 +- t/java-uninstall.sh | 2 +- t/java.sh | 2 +- t/java2.sh | 2 +- t/java3.sh | 2 +- t/javadir-undefined.sh | 2 +- t/javaflags.sh | 2 +- t/javaprim.sh | 2 +- t/javasubst.sh | 2 +- t/ldadd.sh | 2 +- t/ldflags.sh | 2 +- t/lex-clean-cxx.sh | 2 +- t/lex-clean.sh | 2 +- t/lex-depend-cxx.sh | 2 +- t/lex-depend-grep.sh | 2 +- t/lex-depend.sh | 2 +- t/lex-header.sh | 2 +- t/lex-lib-external.sh | 2 +- t/lex-lib.sh | 2 +- t/lex-libobj.sh | 2 +- t/lex-line.sh | 2 +- t/lex-multiple.sh | 2 +- t/lex-nodist.sh | 2 +- t/lex-noyywrap.sh | 2 +- t/lex-pr204.sh | 2 +- t/lex-subobj-nodep.sh | 2 +- t/lex.sh | 2 +- t/lex2.sh | 2 +- t/lex3.sh | 2 +- t/lex5.sh | 2 +- t/lexcpp.sh | 2 +- t/lexvpath.sh | 2 +- t/lflags-cxx.sh | 2 +- t/lflags.sh | 2 +- t/libexec.sh | 2 +- t/libobj-basic.sh | 2 +- t/libobj10.sh | 2 +- t/libobj12.sh | 2 +- t/libobj13.sh | 2 +- t/libobj14.sh | 2 +- t/libobj15a.sh | 2 +- t/libobj15b.sh | 2 +- t/libobj15c.sh | 2 +- t/libobj16a.sh | 2 +- t/libobj16b.sh | 2 +- t/libobj17.sh | 2 +- t/libobj18.sh | 2 +- t/libobj19.sh | 2 +- t/libobj2.sh | 2 +- t/libobj20a.sh | 2 +- t/libobj20b.sh | 2 +- t/libobj20c.sh | 2 +- t/libobj3.sh | 2 +- t/libobj4.sh | 2 +- t/libobj5.sh | 2 +- t/libobj7.sh | 2 +- t/library.sh | 2 +- t/library2.sh | 2 +- t/library3.sh | 2 +- t/libtoo10.sh | 2 +- t/libtoo11.sh | 2 +- t/libtool-macros.sh | 2 +- t/libtool.sh | 2 +- t/libtool2.sh | 2 +- t/libtool3.sh | 2 +- t/libtool4.sh | 2 +- t/libtool5.sh | 2 +- t/libtool6.sh | 2 +- t/libtool7.sh | 2 +- t/libtool8.sh | 2 +- t/libtool9.sh | 2 +- t/license.sh | 2 +- t/license2.sh | 2 +- t/link_c_cxx.sh | 2 +- t/link_cond.sh | 2 +- t/link_dist.sh | 2 +- t/link_f90_only.sh | 2 +- t/link_f_only.sh | 2 +- t/link_fc.sh | 2 +- t/link_fccxx.sh | 2 +- t/link_fcxx.sh | 2 +- t/link_override.sh | 2 +- t/lisp-flags.sh | 2 +- t/lisp-loadpath.sh | 2 +- t/lisp-pr11806.sh | 2 +- t/lisp-subdir-mix.sh | 2 +- t/lisp-subdir.sh | 2 +- t/lisp-subdir2.sh | 2 +- t/lisp2.sh | 2 +- t/lisp3.sh | 2 +- t/lisp4.sh | 2 +- t/lisp5.sh | 2 +- t/lisp6.sh | 2 +- t/lisp7.sh | 2 +- t/lisp8.sh | 2 +- t/lispdry.sh | 2 +- t/list-of-tests.mk | 2 +- t/listval.sh | 2 +- t/location.sh | 2 +- t/longlin2.sh | 2 +- t/longline.sh | 2 +- t/ltcond.sh | 2 +- t/ltcond2.sh | 2 +- t/ltconv.sh | 2 +- t/ltdeps.sh | 2 +- t/ltinit.sh | 2 +- t/ltinstloc.sh | 2 +- t/ltlibobjs.sh | 2 +- t/ltlibsrc.sh | 2 +- t/ltorder.sh | 2 +- t/m4-inclusion.sh | 2 +- t/maintclean-vpath.sh | 2 +- t/maintclean.sh | 2 +- t/maintmode-configure-msg.sh | 2 +- t/make-dryrun.tap | 2 +- t/make-is-gnu.sh | 2 +- t/make-keepgoing.tap | 2 +- t/make.sh | 2 +- t/makefile-deps.sh | 2 +- t/makej.sh | 2 +- t/makej2.sh | 2 +- t/maken.sh | 2 +- t/maken3.sh | 2 +- t/makevars.sh | 2 +- t/man.sh | 2 +- t/man2.sh | 2 +- t/man3.sh | 2 +- t/man5.sh | 2 +- t/man6.sh | 2 +- t/man7.sh | 2 +- t/man8.sh | 2 +- t/mdate.sh | 2 +- t/mdate2.sh | 2 +- t/mdate3.sh | 2 +- t/mdate4.sh | 2 +- t/mdate5.sh | 2 +- t/mdate6.sh | 2 +- t/missing-auxfile-stops-makefiles-creation.sh | 2 +- t/missing-version-mismatch.sh | 2 +- t/missing3.sh | 2 +- t/mkdir_p.sh | 2 +- t/mkdirp-deprecation.sh | 2 +- t/mkinst2.sh | 2 +- t/mkinst3.sh | 2 +- t/mkinstall.sh | 2 +- t/mmode.sh | 2 +- t/mmodely.sh | 2 +- t/no-extra-c-stuff.sh | 2 +- t/no-extra-makefile-code.sh | 2 +- t/no-spurious-install-recursive.sh | 2 +- t/nobase-libtool.sh | 2 +- t/nobase-nodist.sh | 2 +- t/nobase-python.sh | 2 +- t/nobase.sh | 2 +- t/nodef.sh | 2 +- t/nodef2.sh | 2 +- t/nodep.sh | 2 +- t/nodep2.sh | 2 +- t/nodepcomp.sh | 2 +- t/nodist.sh | 2 +- t/nodist2.sh | 2 +- t/nodist3.sh | 2 +- t/noinst.sh | 2 +- t/noinstdir.sh | 2 +- t/nolink.sh | 2 +- t/nostdinc.sh | 2 +- t/notrans.sh | 2 +- t/number.sh | 2 +- t/objc-basic.sh | 2 +- t/objc-deps.sh | 2 +- t/objc-flags.sh | 2 +- t/objc-megademo.sh | 2 +- t/objc-minidemo.sh | 2 +- t/objcxx-basic.sh | 2 +- t/objcxx-deps.sh | 2 +- t/objcxx-flags.sh | 2 +- t/objcxx-minidemo.sh | 2 +- t/objext-pr10128.sh | 2 +- t/oldvars.sh | 2 +- t/order.sh | 2 +- t/output-order.sh | 2 +- t/output.sh | 2 +- t/output10.sh | 2 +- t/output11.sh | 2 +- t/output12.sh | 2 +- t/output13.sh | 2 +- t/output2.sh | 2 +- t/output3.sh | 2 +- t/output4.sh | 2 +- t/output5.sh | 2 +- t/output6.sh | 2 +- t/output7.sh | 2 +- t/output8.sh | 2 +- t/output9.sh | 2 +- t/override-conditional-1.sh | 2 +- t/override-conditional-2.sh | 2 +- t/override-conditional-pr13940.sh | 2 +- t/override-html.sh | 2 +- t/override-suggest-local.sh | 2 +- t/parallel-am.sh | 2 +- t/parallel-am2.sh | 2 +- t/parallel-am3.sh | 2 +- t/parallel-tests-basics.sh | 2 +- t/parallel-tests-cmdline-override.sh | 2 +- t/parallel-tests-concurrency-2.sh | 2 +- t/parallel-tests-concurrency.sh | 2 +- t/parallel-tests-console-output.sh | 2 +- t/parallel-tests-driver-install.sh | 2 +- t/parallel-tests-dry-run-1.sh | 2 +- t/parallel-tests-dry-run-2.sh | 2 +- t/parallel-tests-empty-testlogs.sh | 2 +- t/parallel-tests-empty.sh | 2 +- t/parallel-tests-exeext.sh | 2 +- t/parallel-tests-exit-status-reported.sh | 2 +- t/parallel-tests-exit-statuses.sh | 2 +- t/parallel-tests-extra-programs.sh | 2 +- t/parallel-tests-fd-redirect-exeext.sh | 2 +- t/parallel-tests-fd-redirect.sh | 2 +- t/parallel-tests-fork-bomb.sh | 2 +- t/parallel-tests-generated-and-distributed.sh | 2 +- t/parallel-tests-harderror.sh | 2 +- t/parallel-tests-interrupt.tap | 2 +- t/parallel-tests-log-compiler-1.sh | 2 +- t/parallel-tests-log-compiler-2.sh | 2 +- t/parallel-tests-log-compiler-example.sh | 2 +- t/parallel-tests-log-override-1.sh | 2 +- t/parallel-tests-log-override-2.sh | 2 +- t/parallel-tests-log-override-recheck.sh | 2 +- t/parallel-tests-no-color-in-log.sh | 2 +- t/parallel-tests-no-spurious-summary.sh | 2 +- t/parallel-tests-once.sh | 2 +- t/parallel-tests-recheck-depends-on-all.sh | 2 +- t/parallel-tests-recheck-pr11791.sh | 2 +- t/parallel-tests-recheck.sh | 2 +- t/parallel-tests-reset-term.sh | 2 +- t/parallel-tests-subdir.sh | 2 +- t/parallel-tests-suffix-prog.sh | 2 +- t/parallel-tests-suffix.sh | 2 +- t/parallel-tests-trailing-whitespace.sh | 2 +- t/parallel-tests-unreadable.sh | 2 +- t/parse.sh | 2 +- t/per-target-flags.sh | 2 +- t/percent.sh | 2 +- t/percent2.sh | 2 +- t/perf/cond.sh | 2 +- t/perf/testsuite-recheck.sh | 2 +- t/perf/testsuite-summary.sh | 2 +- t/phony.sh | 2 +- t/pkg-config-macros.sh | 2 +- t/pluseq.sh | 2 +- t/pluseq10.sh | 2 +- t/pluseq11.sh | 2 +- t/pluseq2.sh | 2 +- t/pluseq3.sh | 2 +- t/pluseq4.sh | 2 +- t/pluseq5.sh | 2 +- t/pluseq6.sh | 2 +- t/pluseq7.sh | 2 +- t/pluseq8.sh | 2 +- t/pluseq9.sh | 2 +- t/pm/Cond2.pl | 2 +- t/pm/Cond3.pl | 2 +- t/pm/Condition-t.pl | 2 +- t/pm/Condition.pl | 2 +- t/pm/DisjCon2.pl | 2 +- t/pm/DisjCon3.pl | 2 +- t/pm/DisjConditions-t.pl | 2 +- t/pm/DisjConditions.pl | 2 +- t/pm/Version.pl | 2 +- t/pm/Version2.pl | 2 +- t/pm/Version3.pl | 2 +- t/pm/Wrap.pl | 2 +- t/posixsubst-data.sh | 2 +- t/posixsubst-extradist.sh | 2 +- t/posixsubst-ldadd.sh | 2 +- t/posixsubst-libraries.sh | 2 +- t/posixsubst-ltlibraries.sh | 2 +- t/posixsubst-programs.sh | 2 +- t/posixsubst-scripts.sh | 2 +- t/posixsubst-sources.sh | 2 +- t/posixsubst-tests.sh | 2 +- t/postproc.sh | 2 +- t/ppf77.sh | 2 +- t/pr2.sh | 2 +- t/pr211.sh | 2 +- t/pr220.sh | 2 +- t/pr224.sh | 2 +- t/pr229.sh | 2 +- t/pr243.sh | 2 +- t/pr266.sh | 2 +- t/pr279-2.sh | 2 +- t/pr279.sh | 2 +- t/pr287.sh | 2 +- t/pr300-lib.sh | 2 +- t/pr300-ltlib.sh | 2 +- t/pr300-prog.sh | 2 +- t/pr307.sh | 2 +- t/pr401.sh | 2 +- t/pr401b.sh | 2 +- t/pr401c.sh | 2 +- t/pr72.sh | 2 +- t/pr87.sh | 2 +- t/pr9.sh | 2 +- t/precious.sh | 2 +- t/prefix.sh | 2 +- t/preproc-basics.sh | 2 +- t/preproc-c-compile.sh | 2 +- t/preproc-demo.sh | 2 +- t/preproc-errmsg.sh | 2 +- t/primary-prefix-couples-documented-valid.sh | 2 +- t/primary-prefix-couples-force-valid.sh | 2 +- t/primary-prefix-invalid-couples.tap | 2 +- t/primary-prefix-valid-couples.sh | 2 +- t/primary.sh | 2 +- t/primary2.sh | 2 +- t/primary3.sh | 2 +- t/print-libdir.sh | 2 +- t/proginst.sh | 2 +- t/programs-primary-rewritten.sh | 2 +- t/py-compile-basedir.sh | 2 +- t/py-compile-basic.sh | 2 +- t/py-compile-destdir.sh | 2 +- t/py-compile-env.sh | 2 +- t/py-compile-option-terminate.sh | 2 +- t/py-compile-usage.sh | 2 +- t/python-am-path-iftrue.sh | 2 +- t/python-dist.sh | 2 +- t/python-missing.sh | 2 +- t/python-pr10995.sh | 2 +- t/python-too-old.sh | 2 +- t/python-vars.sh | 2 +- t/python-virtualenv.sh | 2 +- t/python.sh | 2 +- t/python10.sh | 2 +- t/python11.sh | 2 +- t/python12.sh | 2 +- t/python2.sh | 2 +- t/python3.sh | 2 +- t/recurs-user-deeply-nested.sh | 2 +- t/recurs-user-indir.sh | 2 +- t/recurs-user-keep-going.sh | 2 +- t/recurs-user-many.sh | 2 +- t/recurs-user-no-subdirs.sh | 2 +- t/recurs-user-no-top-level.sh | 2 +- t/recurs-user-override.sh | 2 +- t/recurs-user-phony.sh | 2 +- t/recurs-user-wrap.sh | 2 +- t/recurs-user.sh | 2 +- t/recurs-user2.sh | 2 +- t/relativize.tap | 2 +- t/remake-aclocal-version-mismatch.sh | 2 +- t/remake-after-acinclude-m4.sh | 2 +- t/remake-after-aclocal-m4.sh | 2 +- t/remake-after-configure-ac.sh | 2 +- t/remake-after-makefile-am.sh | 2 +- t/remake-all-1.sh | 2 +- t/remake-all-2.sh | 2 +- t/remake-am-pr10111.sh | 2 +- t/remake-config-status-dependencies.sh | 2 +- t/remake-configure-dependencies.sh | 2 +- t/remake-deeply-nested.sh | 2 +- t/remake-deleted-am-2.sh | 2 +- t/remake-deleted-am-subdir.sh | 2 +- t/remake-deleted-am.sh | 2 +- t/remake-deleted-m4-file.sh | 2 +- t/remake-fail.sh | 2 +- t/remake-gnulib-add-acsubst.sh | 2 +- t/remake-gnulib-add-header.sh | 2 +- t/remake-gnulib-remove-header.sh | 2 +- t/remake-include-aclocal.sh | 2 +- t/remake-include-configure.sh | 2 +- t/remake-include-makefile.sh | 2 +- t/remake-m4-pr10111.sh | 2 +- t/remake-macrodir.sh | 2 +- t/remake-maintainer-mode.sh | 2 +- t/remake-makefile-intree.sh | 2 +- t/remake-makefile-vpath.sh | 2 +- t/remake-mild-stress.sh | 2 +- t/remake-moved-m4-file.sh | 2 +- t/remake-not-after-make-dist.sh | 2 +- t/remake-recurs-user.sh | 2 +- t/remake-renamed-am.sh | 2 +- t/remake-renamed-m4-file.sh | 2 +- t/remake-renamed-m4-macro-and-file.sh | 2 +- t/remake-renamed-m4-macro.sh | 2 +- t/remake-subdir-from-subdir.sh | 2 +- t/remake-subdir-gnu.sh | 2 +- t/remake-subdir-grepping.sh | 2 +- t/remake-subdir-long-time.sh | 2 +- t/remake-subdir-no-makefile.sh | 2 +- t/remake-subdir-only.sh | 2 +- t/remake-subdir.sh | 2 +- t/remake-subdir2.sh | 2 +- t/remake-subdir3.sh | 2 +- t/remake-timing-bug-pr8365.sh | 2 +- t/repeated-options.sh | 2 +- t/reqd2.sh | 2 +- t/rm-f-probe.sh | 2 +- t/rulepat.sh | 2 +- t/sanity.sh | 2 +- t/seenc.sh | 2 +- t/self-check-cc-no-c-o.sh | 2 +- t/self-check-configure-help.sh | 2 +- t/self-check-dir.tap | 2 +- t/self-check-exit.tap | 2 +- t/self-check-explicit-skips.sh | 2 +- t/self-check-is-blocked-signal.tap | 2 +- t/self-check-is_newest.tap | 2 +- t/self-check-me.tap | 2 +- t/self-check-report.sh | 2 +- t/self-check-seq.tap | 2 +- t/self-check-shell-no-trail-bslash.sh | 2 +- t/self-check-unindent.tap | 2 +- t/serial-tests.sh | 2 +- t/silent-c.sh | 2 +- t/silent-configsite.sh | 2 +- t/silent-custom.sh | 2 +- t/silent-cxx.sh | 2 +- t/silent-f77.sh | 2 +- t/silent-f90.sh | 2 +- t/silent-gen.sh | 2 +- t/silent-lex.sh | 2 +- t/silent-lt.sh | 2 +- t/silent-many-languages.sh | 2 +- t/silent-nested-vars.sh | 2 +- t/silent-texi.sh | 2 +- t/silent-yacc-headers.sh | 2 +- t/silent-yacc.sh | 2 +- t/sourcefile-in-subdir.sh | 2 +- t/space.sh | 2 +- t/specflg-dummy.sh | 2 +- t/specflg6.sh | 2 +- t/specflg7.sh | 2 +- t/specflg8.sh | 2 +- t/specflg9.sh | 2 +- t/spell.sh | 2 +- t/spell2.sh | 2 +- t/spell3.sh | 2 +- t/spelling.sh | 2 +- t/spy-double-colon.sh | 2 +- t/spy-rm.tap | 2 +- t/src-acsubst.sh | 2 +- t/stamph2.sh | 2 +- t/stdinc.sh | 2 +- t/stdlib.sh | 2 +- t/stdlib2.sh | 2 +- t/strictness-override.sh | 2 +- t/strictness-precedence.sh | 2 +- t/strip.sh | 2 +- t/strip2.sh | 2 +- t/strip3.sh | 2 +- t/subdir-ac-subst.sh | 2 +- t/subdir-add-pr46.sh | 2 +- t/subdir-add2-pr46.sh | 2 +- t/subdir-am-cond.sh | 2 +- t/subdir-cond-err.sh | 2 +- t/subdir-cond-gettext.sh | 2 +- t/subdir-distclean.sh | 2 +- t/subdir-env-interference.sh | 2 +- t/subdir-keep-going-pr12554.sh | 2 +- t/subdir-order.sh | 2 +- t/subdir-subsub.sh | 2 +- t/subdir-with-slash.sh | 2 +- t/subdir.sh | 2 +- t/subobj-clean-lt-pr10697.sh | 2 +- t/subobj-clean-pr10697.sh | 2 +- t/subobj-indir-pr13928.sh | 2 +- t/subobj-vpath-pr13928.sh | 2 +- t/subobj.sh | 2 +- t/subobj10.sh | 2 +- t/subobj11a.sh | 2 +- t/subobj11b.sh | 2 +- t/subobj11c.sh | 2 +- t/subobj2.sh | 2 +- t/subobj4.sh | 2 +- t/subobj5.sh | 2 +- t/subobj6.sh | 2 +- t/subobj7.sh | 2 +- t/subobj8.sh | 2 +- t/subobj9.sh | 2 +- t/subobjname.sh | 2 +- t/subpkg-macrodir.sh | 2 +- t/subpkg-yacc.sh | 2 +- t/subpkg.sh | 2 +- t/subpkg2.sh | 2 +- t/subpkg3.sh | 2 +- t/subpkg4.sh | 2 +- t/subst-no-trailing-empty-line.sh | 2 +- t/subst.sh | 2 +- t/subst3.sh | 2 +- t/subst4.sh | 2 +- t/subst5.sh | 2 +- t/substre2.sh | 2 +- t/substref.sh | 2 +- t/substtarg.sh | 2 +- t/suffix-chain.tap | 2 +- t/suffix-custom-pr14441.sh | 2 +- t/suffix-custom-subobj-and-specflg.sh | 2 +- t/suffix-custom-subobj.sh | 2 +- t/suffix-extra-c-stuff-pr14560.sh | 2 +- t/suffix.sh | 2 +- t/suffix10.tap | 2 +- t/suffix11.tap | 2 +- t/suffix2.sh | 2 +- t/suffix3.tap | 2 +- t/suffix4.sh | 2 +- t/suffix5.sh | 2 +- t/suffix6.sh | 2 +- t/suffix6b.sh | 2 +- t/suffix6c.sh | 2 +- t/suffix7.sh | 2 +- t/suffix8.tap | 2 +- t/suffix9.sh | 2 +- t/symlink.sh | 2 +- t/symlink2.sh | 2 +- t/syntax.sh | 2 +- t/tags-pr12372.sh | 2 +- t/tags.sh | 2 +- t/tags2.sh | 2 +- t/tagsub.sh | 2 +- t/tap-ambiguous-directive.sh | 2 +- t/tap-autonumber.sh | 2 +- t/tap-bad-prog.tap | 2 +- t/tap-bailout-and-logging.sh | 2 +- t/tap-bailout-leading-space.sh | 2 +- t/tap-bailout-suppress-badexit.sh | 2 +- t/tap-bailout-suppress-later-diagnostic.sh | 2 +- t/tap-bailout-suppress-later-errors.sh | 2 +- t/tap-bailout.sh | 2 +- t/tap-basic.sh | 2 +- t/tap-color.sh | 2 +- t/tap-common-setup.sh | 2 +- t/tap-deps.sh | 2 +- t/tap-diagnostic-custom.sh | 2 +- t/tap-diagnostic.sh | 2 +- t/tap-doc.sh | 2 +- t/tap-doc2.sh | 2 +- t/tap-driver-stderr.sh | 2 +- t/tap-empty-diagnostic.sh | 2 +- t/tap-empty.sh | 2 +- t/tap-escape-directive-2.sh | 2 +- t/tap-escape-directive.sh | 2 +- t/tap-exit.sh | 2 +- t/tap-fancy.sh | 2 +- t/tap-fancy2.sh | 2 +- t/tap-global-log.sh | 2 +- t/tap-global-result.sh | 2 +- t/tap-log.sh | 2 +- t/tap-merge-stdout-stderr.sh | 2 +- t/tap-missing-plan-and-bad-exit.sh | 2 +- t/tap-more.sh | 2 +- t/tap-more2.sh | 2 +- t/tap-msg0-bailout.sh | 2 +- t/tap-msg0-directive.sh | 2 +- t/tap-msg0-misc.sh | 2 +- t/tap-msg0-planskip.sh | 2 +- t/tap-msg0-result.sh | 2 +- t/tap-negative-numbers.sh | 2 +- t/tap-no-disable-hard-error.sh | 2 +- t/tap-no-merge-stdout-stderr.sh | 2 +- t/tap-no-spurious-numbers.sh | 2 +- t/tap-no-spurious-summary.sh | 2 +- t/tap-no-spurious.sh | 2 +- t/tap-not-ok-skip.sh | 2 +- t/tap-number-wordboundary.sh | 2 +- t/tap-numbers-leading-zero.sh | 2 +- t/tap-numeric-description.sh | 2 +- t/tap-out-of-order.sh | 2 +- t/tap-passthrough-exit.sh | 2 +- t/tap-passthrough.sh | 2 +- t/tap-plan-corner.sh | 2 +- t/tap-plan-errors.sh | 2 +- t/tap-plan-leading-zero.sh | 2 +- t/tap-plan-malformed.sh | 2 +- t/tap-plan-middle.sh | 2 +- t/tap-plan-whitespace.sh | 2 +- t/tap-plan.sh | 2 +- t/tap-planskip-and-logging.sh | 2 +- t/tap-planskip-badexit.sh | 2 +- t/tap-planskip-bailout.sh | 2 +- t/tap-planskip-case-insensitive.sh | 2 +- t/tap-planskip-late.sh | 2 +- t/tap-planskip-later-errors.sh | 2 +- t/tap-planskip-unplanned-corner.sh | 2 +- t/tap-planskip-unplanned.sh | 2 +- t/tap-planskip-whitespace.sh | 2 +- t/tap-planskip.sh | 2 +- t/tap-recheck-logs.sh | 2 +- t/tap-recheck.sh | 2 +- t/tap-result-comment.sh | 2 +- t/tap-signal.tap | 2 +- t/tap-summary-color.sh | 2 +- t/tap-summary.sh | 2 +- t/tap-test-number-0.sh | 2 +- t/tap-todo-skip-together.sh | 2 +- t/tap-todo-skip-whitespace.sh | 2 +- t/tap-todo-skip.sh | 2 +- t/tap-unplanned.sh | 2 +- t/tap-whitespace-normalization.sh | 2 +- t/tap-with-and-without-number.sh | 2 +- t/tap-xfail-tests.sh | 2 +- t/tar-opts-errors.sh | 2 +- t/tar-override.sh | 2 +- t/tar-pax.sh | 2 +- t/tar-ustar-id-too-high.sh | 2 +- t/tar-ustar.sh | 2 +- t/target-cflags.sh | 2 +- t/targetclash.sh | 2 +- t/test-driver-acsubst.sh | 2 +- t/test-driver-cond.sh | 2 +- t/test-driver-create-log-dir.sh | 2 +- t/test-driver-custom-multitest-recheck.sh | 2 +- t/test-driver-custom-multitest-recheck2.sh | 2 +- t/test-driver-custom-multitest.sh | 2 +- t/test-driver-custom-no-extra-driver.sh | 2 +- t/test-driver-custom-xfail-tests.sh | 2 +- t/test-driver-custom.sh | 2 +- t/test-driver-fail.sh | 2 +- t/test-driver-is-distributed.sh | 2 +- t/test-driver-strip-vpath.sh | 2 +- t/test-driver-trs-suffix-registered.sh | 2 +- t/test-extensions-cond.sh | 2 +- t/test-extensions.sh | 2 +- t/test-harness-vpath-rewrite.sh | 2 +- t/test-log.sh | 2 +- t/test-logs-repeated.sh | 2 +- t/test-metadata-global-log.sh | 2 +- t/test-metadata-global-result.sh | 2 +- t/test-metadata-recheck.sh | 2 +- t/test-metadata-results.sh | 2 +- t/test-missing.sh | 2 +- t/test-missing2.sh | 2 +- t/test-trs-basic.sh | 2 +- t/test-trs-recover.sh | 2 +- t/test-trs-recover2.sh | 2 +- t/tests-environment-and-log-compiler.sh | 2 +- t/tests-environment-backcompat.sh | 2 +- t/tests-environment-fd-redirect.sh | 2 +- t/tests-environment.sh | 2 +- t/testsuite-summary-color.sh | 2 +- t/testsuite-summary-count-many.sh | 2 +- t/testsuite-summary-count.sh | 2 +- t/testsuite-summary-reference-log.sh | 2 +- t/transform.sh | 2 +- t/transform2.sh | 2 +- t/transform3.sh | 2 +- t/txinfo-absolute-srcdir-pr408.sh | 2 +- t/txinfo-add-missing-and-dist.sh | 2 +- t/txinfo-bsd-make-recurs.sh | 2 +- t/txinfo-builddir.sh | 2 +- t/txinfo-clean.sh | 2 +- t/txinfo-dvi-recurs.sh | 2 +- t/txinfo-include.sh | 2 +- t/txinfo-info-in-srcdir.sh | 2 +- t/txinfo-makeinfo-error-no-clobber.sh | 2 +- t/txinfo-many-output-formats-vpath.sh | 2 +- t/txinfo-many-output-formats.sh | 2 +- t/txinfo-no-clutter.sh | 2 +- t/txinfo-no-extra-dist.sh | 2 +- t/txinfo-no-installinfo.sh | 2 +- t/txinfo-no-repeated-targets.sh | 2 +- t/txinfo-nodist-info.sh | 2 +- t/txinfo-other-suffixes.sh | 2 +- t/txinfo-override-infodeps.sh | 2 +- t/txinfo-override-texinfo-tex.sh | 2 +- t/txinfo-setfilename-repeated.sh | 2 +- t/txinfo-setfilename-suffix-strip.sh | 2 +- t/txinfo-subdir-pr343.sh | 2 +- t/txinfo-tex-dist.sh | 2 +- t/txinfo-unrecognized-extension.sh | 2 +- t/txinfo-unrecognized-info-suffix.sh | 2 +- t/txinfo-vtexi.sh | 2 +- t/txinfo-vtexi2.sh | 2 +- t/txinfo-vtexi3.sh | 2 +- t/txinfo-vtexi4.sh | 2 +- t/txinfo-without-info-suffix.sh | 2 +- t/txinfo19.sh | 2 +- t/txinfo23.sh | 2 +- t/txinfo24.sh | 2 +- t/txinfo25.sh | 2 +- t/txinfo28.sh | 2 +- t/uninstall-fail.sh | 2 +- t/uninstall-pr9578.sh | 2 +- t/unused.sh | 2 +- t/upc.sh | 2 +- t/upc2.sh | 2 +- t/upc3.sh | 2 +- t/vala-configure.sh | 2 +- t/vala-grepping.sh | 2 +- t/vala-headers.sh | 2 +- t/vala-libs.sh | 2 +- t/vala-mix.sh | 2 +- t/vala-mix2.sh | 2 +- t/vala-non-recursive-setup.sh | 2 +- t/vala-parallel.sh | 2 +- t/vala-per-target-flags.sh | 2 +- t/vala-recursive-setup.sh | 2 +- t/vala-vapi.sh | 2 +- t/vala-vpath.sh | 2 +- t/var-recurs.sh | 2 +- t/var-recurs2.sh | 2 +- t/vars.sh | 2 +- t/vars3.sh | 2 +- t/vartar.sh | 2 +- t/vartypo2.sh | 2 +- t/vartypos.sh | 2 +- t/version3.sh | 2 +- t/version4.sh | 2 +- t/version6.sh | 2 +- t/version7.sh | 2 +- t/version8.sh | 2 +- t/vpath.sh | 2 +- t/warning-groups-win-over-strictness.sh | 2 +- t/warnings-obsolete-default.sh | 2 +- t/warnings-override.sh | 2 +- t/warnings-precedence.sh | 2 +- t/warnings-strictness-interactions.sh | 2 +- t/warnings-unknown.sh | 2 +- t/warnings-win-over-strictness.sh | 2 +- t/warnopts.sh | 2 +- t/werror.sh | 2 +- t/werror2.sh | 2 +- t/werror3.sh | 2 +- t/werror4.sh | 2 +- t/whoami.sh | 2 +- t/wrap/aclocal.in | 2 +- t/wrap/automake.in | 2 +- t/xsource.sh | 2 +- t/yacc-auxdir.sh | 2 +- t/yacc-basic.sh | 2 +- t/yacc-bison-skeleton-cxx.sh | 2 +- t/yacc-bison-skeleton.sh | 2 +- t/yacc-clean-cxx.sh | 2 +- t/yacc-clean.sh | 2 +- t/yacc-cxx-grepping.sh | 2 +- t/yacc-cxx.sh | 2 +- t/yacc-d-basic.sh | 2 +- t/yacc-d-cxx.sh | 2 +- t/yacc-d-vpath.sh | 2 +- t/yacc-deleted-headers.sh | 2 +- t/yacc-depend.sh | 2 +- t/yacc-depend2.sh | 2 +- t/yacc-dist-nobuild-subdir.sh | 2 +- t/yacc-dist-nobuild.sh | 2 +- t/yacc-dry.sh | 2 +- t/yacc-grepping.sh | 2 +- t/yacc-grepping2.sh | 2 +- t/yacc-headers-and-dist-pr47.sh | 2 +- t/yacc-line.sh | 2 +- t/yacc-misc.sh | 2 +- t/yacc-mix-c-cxx.sh | 2 +- t/yacc-nodist.sh | 2 +- t/yacc-pr204.sh | 2 +- t/yacc-subdir.sh | 2 +- t/yacc-vpath.sh | 2 +- t/yacc-weirdnames.sh | 2 +- t/yflags-cmdline-override.sh | 2 +- t/yflags-conditional.sh | 2 +- t/yflags-cxx.sh | 2 +- t/yflags-d-false-positives.sh | 2 +- t/yflags-force-conditional.sh | 2 +- t/yflags-force-override.sh | 2 +- t/yflags-var-expand.sh | 2 +- t/yflags.sh | 2 +- 1429 files changed, 1431 insertions(+), 1431 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 52c200295..893d5d60b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,6 +1,6 @@ # Maintainer makefile for Automake. Requires GNU make. -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/HACKING b/HACKING index 1116b970b..d108b821b 100644 --- a/HACKING +++ b/HACKING @@ -384,7 +384,7 @@ ----- -Copyright (C) 2003-2013 Free Software Foundation, Inc. +Copyright (C) 2003-2014 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 diff --git a/Makefile.am b/Makefile.am index f8b6ac5c6..7e1c74800 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,7 @@ ## Makefile for Automake. -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 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 diff --git a/NEWS b/NEWS index 9fbd3ca3f..eb88c17d8 100644 --- a/NEWS +++ b/NEWS @@ -2860,7 +2860,7 @@ New in 0.20: ----- -Copyright (C) 1995-2013 Free Software Foundation, Inc. +Copyright (C) 1995-2014 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 diff --git a/bin/Makefile.inc b/bin/Makefile.inc index 5842b7109..8d2fe19d2 100644 --- a/bin/Makefile.inc +++ b/bin/Makefile.inc @@ -1,4 +1,4 @@ -## Copyright (C) 1995-2013 Free Software Foundation, Inc. +## Copyright (C) 1995-2014 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 diff --git a/bin/aclocal.in b/bin/aclocal.in index ba3047905..349f24a23 100644 --- a/bin/aclocal.in +++ b/bin/aclocal.in @@ -7,7 +7,7 @@ eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac' # aclocal - create aclocal.m4 by scanning configure.ac -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/bin/automake.in b/bin/automake.in index 880830022..996a9de23 100644 --- a/bin/automake.in +++ b/bin/automake.in @@ -6,7 +6,7 @@ eval 'case $# in 0) exec @PERL@ -S "$0";; *) exec @PERL@ -S "$0" "$@";; esac' if 0; # automake - create Makefile.in from Makefile.am -# Copyright (C) 1994-2013 Free Software Foundation, Inc. +# Copyright (C) 1994-2014 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 diff --git a/bin/gen-perl-protos b/bin/gen-perl-protos index 9e73d8d7a..d620281c7 100755 --- a/bin/gen-perl-protos +++ b/bin/gen-perl-protos @@ -1,6 +1,6 @@ #!/usr/bin/env perl # -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/bootstrap.sh b/bootstrap.sh index 5add98a93..45b42bb00 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -2,7 +2,7 @@ # This script helps bootstrap automake, when checked out from git. # -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # Originally written by Pavel Roskin September 2002. # # This program is free software; you can redistribute it and/or modify @@ -37,7 +37,7 @@ PACKAGE=automake datadir=. # This should be automatically updated by the 'update-copyright' # rule of our Makefile. -RELEASE_YEAR=2013 +RELEASE_YEAR=2014 # Override SHELL. This is required on DJGPP so that Perl's system() # uses bash, not COMMAND.COM which doesn't quote arguments properly. diff --git a/configure.ac b/configure.ac index a294aee5e..0fed54803 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # Process this file with autoconf to produce a configure script. -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 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 @@ -44,7 +44,7 @@ AM_INIT_AUTOMAKE([-Wall -Werror dist-xz filename-length-max=99 # Keep this on a line of its own, since it must be found and processed # by the 'update-copyright' rule in our Makefile. -RELEASE_YEAR=2013 +RELEASE_YEAR=2014 AC_SUBST([RELEASE_YEAR]) # The API version is the base version. We must guarantee diff --git a/contrib/check-html.am b/contrib/check-html.am index 3aff7e44d..a0fc17d7f 100644 --- a/contrib/check-html.am +++ b/contrib/check-html.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2001-2013 Free Software Foundation, Inc. +## Copyright (C) 2001-2014 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 diff --git a/contrib/multilib/config-ml.in b/contrib/multilib/config-ml.in index 0c373465b..2691f8acb 100644 --- a/contrib/multilib/config-ml.in +++ b/contrib/multilib/config-ml.in @@ -1,7 +1,7 @@ # Configure fragment invoked in the post-target section for subdirs # wanting multilib support. # -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/contrib/multilib/multi.m4 b/contrib/multilib/multi.m4 index f045f9528..aecba44fa 100644 --- a/contrib/multilib/multi.m4 +++ b/contrib/multilib/multi.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/contrib/multilib/multilib.am b/contrib/multilib/multilib.am index c416deef0..9f3e73b26 100644 --- a/contrib/multilib/multilib.am +++ b/contrib/multilib/multilib.am @@ -1,6 +1,6 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 Free Software Foundation, Inc. ## This Makefile.in is free software; the Free Software Foundation ## gives unlimited permission to copy and/or distribute it, ## with or without modifications, as long as this notice is preserved. diff --git a/contrib/multilib/symlink-tree b/contrib/multilib/symlink-tree index c471c0098..188f36ad3 100755 --- a/contrib/multilib/symlink-tree +++ b/contrib/multilib/symlink-tree @@ -1,7 +1,7 @@ #!/bin/sh # Create a symlink tree. # -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/contrib/t/Makefile.inc b/contrib/t/Makefile.inc index a92b80d96..1b4ba599a 100644 --- a/contrib/t/Makefile.inc +++ b/contrib/t/Makefile.inc @@ -1,6 +1,6 @@ ## Included by top-level Makefile for Automake. -## Copyright (C) 1995-2013 Free Software Foundation, Inc. +## Copyright (C) 1995-2014 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 diff --git a/contrib/t/help-multilib.sh b/contrib/t/help-multilib.sh index 2621a2956..1f2b90aa9 100755 --- a/contrib/t/help-multilib.sh +++ b/contrib/t/help-multilib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/contrib/t/multilib.sh b/contrib/t/multilib.sh index 55c5b4ae7..8068b36a3 100755 --- a/contrib/t/multilib.sh +++ b/contrib/t/multilib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/contrib/t/parallel-tests-html-recursive.sh b/contrib/t/parallel-tests-html-recursive.sh index 64dd79dde..ce85594b3 100755 --- a/contrib/t/parallel-tests-html-recursive.sh +++ b/contrib/t/parallel-tests-html-recursive.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/contrib/t/parallel-tests-html.sh b/contrib/t/parallel-tests-html.sh index 209dda880..de761c342 100755 --- a/contrib/t/parallel-tests-html.sh +++ b/contrib/t/parallel-tests-html.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/contrib/tap-driver.pl b/contrib/tap-driver.pl index e7e581de4..2edbde2a2 100755 --- a/contrib/tap-driver.pl +++ b/contrib/tap-driver.pl @@ -1,5 +1,5 @@ #! /usr/bin/env perl -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/doc/Makefile.inc b/doc/Makefile.inc index dd477d6f9..62f5309b1 100644 --- a/doc/Makefile.inc +++ b/doc/Makefile.inc @@ -1,6 +1,6 @@ ## Included by top-level Makefile for Automake. -## Copyright (C) 1995-2013 Free Software Foundation, Inc. +## Copyright (C) 1995-2014 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 diff --git a/doc/amhello/Makefile.am b/doc/amhello/Makefile.am index 3eaf094a0..ef3e2b585 100644 --- a/doc/amhello/Makefile.am +++ b/doc/amhello/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 Free Software Foundation, Inc. # This Makefile.am is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. diff --git a/doc/amhello/configure.ac b/doc/amhello/configure.ac index 7b1c35848..a5b684d2e 100644 --- a/doc/amhello/configure.ac +++ b/doc/amhello/configure.ac @@ -1,4 +1,4 @@ -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 Free Software Foundation, Inc. # This configure.ac script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. diff --git a/doc/amhello/src/Makefile.am b/doc/amhello/src/Makefile.am index f67c30fa6..09728c1d9 100644 --- a/doc/amhello/src/Makefile.am +++ b/doc/amhello/src/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 Free Software Foundation, Inc. # This Makefile.am is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. diff --git a/doc/amhello/src/main.c b/doc/amhello/src/main.c index b8d04d21b..462dca606 100644 --- a/doc/amhello/src/main.c +++ b/doc/amhello/src/main.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2006-2013 Free Software Foundation, Inc. +/* Copyright (C) 2006-2014 Free Software Foundation, Inc. This program is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. */ diff --git a/doc/automake-history.texi b/doc/automake-history.texi index 5089f59b5..d45f3208d 100644 --- a/doc/automake-history.texi +++ b/doc/automake-history.texi @@ -10,7 +10,7 @@ This manual describes (part of) the history of GNU Automake, a program that creates GNU standards-compliant Makefiles from template files. -Copyright @copyright{} 1995-2013 Free Software Foundation, Inc. +Copyright @copyright{} 1995-2014 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/doc/automake.texi b/doc/automake.texi index 8b92e1c46..48c7fd04f 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -25,7 +25,7 @@ This manual is for GNU Automake (version @value{VERSION}, @value{UPDATED}), a program that creates GNU standards-compliant Makefiles from template files. -Copyright @copyright{} 1995-2013 Free Software Foundation, Inc. +Copyright @copyright{} 1995-2014 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/doc/fdl.texi b/doc/fdl.texi index bcabd3ac4..8ac77594f 100644 --- a/doc/fdl.texi +++ b/doc/fdl.texi @@ -5,7 +5,7 @@ @c hence no sectioning command or @node. @display -Copyright @copyright{} 2000-2013 Free Software Foundation, Inc. +Copyright @copyright{} 2000-2014 Free Software Foundation, Inc. @uref{http://fsf.org/} Everyone is permitted to copy and distribute verbatim copies diff --git a/doc/help2man b/doc/help2man index 0c2fb3de4..af4306f67 100755 --- a/doc/help2man +++ b/doc/help2man @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # Generate a short man page from --help and --version output. -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/gen-testsuite-part b/gen-testsuite-part index 5bd1b4e96..98f8c24da 100755 --- a/gen-testsuite-part +++ b/gen-testsuite-part @@ -3,7 +3,7 @@ # of the Automake testsuite. Also, automatically generate some more # tests from them (for particular cases/setups only). -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/lib/Automake/ChannelDefs.pm b/lib/Automake/ChannelDefs.pm index 0fe619753..bb62d5767 100644 --- a/lib/Automake/ChannelDefs.pm +++ b/lib/Automake/ChannelDefs.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/lib/Automake/Channels.pm b/lib/Automake/Channels.pm index fe843ab9a..9fd513f31 100644 --- a/lib/Automake/Channels.pm +++ b/lib/Automake/Channels.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/lib/Automake/Condition.pm b/lib/Automake/Condition.pm index 3231d716b..bc4f8bac5 100644 --- a/lib/Automake/Condition.pm +++ b/lib/Automake/Condition.pm @@ -1,4 +1,4 @@ -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/lib/Automake/Config.in b/lib/Automake/Config.in index 885e74e5d..eee94157c 100644 --- a/lib/Automake/Config.in +++ b/lib/Automake/Config.in @@ -1,5 +1,5 @@ # -*- Perl -*- -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # @configure_input@ # This program is free software; you can redistribute it and/or modify diff --git a/lib/Automake/Configure_ac.pm b/lib/Automake/Configure_ac.pm index 8e48991de..e7c6df6e8 100644 --- a/lib/Automake/Configure_ac.pm +++ b/lib/Automake/Configure_ac.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/DisjConditions.pm b/lib/Automake/DisjConditions.pm index c68d4cb32..c8a294941 100644 --- a/lib/Automake/DisjConditions.pm +++ b/lib/Automake/DisjConditions.pm @@ -1,4 +1,4 @@ -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/lib/Automake/FileUtils.pm b/lib/Automake/FileUtils.pm index d650aef28..13e11b560 100644 --- a/lib/Automake/FileUtils.pm +++ b/lib/Automake/FileUtils.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/General.pm b/lib/Automake/General.pm index 86a367b72..269ba644a 100644 --- a/lib/Automake/General.pm +++ b/lib/Automake/General.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/lib/Automake/Getopt.pm b/lib/Automake/Getopt.pm index c03b9cf28..f6ff9bdd6 100644 --- a/lib/Automake/Getopt.pm +++ b/lib/Automake/Getopt.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/lib/Automake/Item.pm b/lib/Automake/Item.pm index 6b699be66..fc46047a8 100644 --- a/lib/Automake/Item.pm +++ b/lib/Automake/Item.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/ItemDef.pm b/lib/Automake/ItemDef.pm index 416ae12c8..6a09aa019 100644 --- a/lib/Automake/ItemDef.pm +++ b/lib/Automake/ItemDef.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/Language.pm b/lib/Automake/Language.pm index a678e1e4d..176baa37e 100644 --- a/lib/Automake/Language.pm +++ b/lib/Automake/Language.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/lib/Automake/Location.pm b/lib/Automake/Location.pm index 1a9bc6feb..0eb2f9ffb 100644 --- a/lib/Automake/Location.pm +++ b/lib/Automake/Location.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/lib/Automake/Makefile.inc b/lib/Automake/Makefile.inc index 48b15231f..fbbe54dcf 100644 --- a/lib/Automake/Makefile.inc +++ b/lib/Automake/Makefile.inc @@ -1,6 +1,6 @@ ## Included by top-level Makefile for Automake. -## Copyright (C) 1995-2013 Free Software Foundation, Inc. +## Copyright (C) 1995-2014 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 diff --git a/lib/Automake/Options.pm b/lib/Automake/Options.pm index fab33f3a3..7d782c3c9 100644 --- a/lib/Automake/Options.pm +++ b/lib/Automake/Options.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/Rule.pm b/lib/Automake/Rule.pm index 522700902..5544fc042 100644 --- a/lib/Automake/Rule.pm +++ b/lib/Automake/Rule.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/RuleDef.pm b/lib/Automake/RuleDef.pm index 35a053087..9b657c990 100644 --- a/lib/Automake/RuleDef.pm +++ b/lib/Automake/RuleDef.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/VarDef.pm b/lib/Automake/VarDef.pm index 279e17cae..156f853de 100644 --- a/lib/Automake/VarDef.pm +++ b/lib/Automake/VarDef.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/Variable.pm b/lib/Automake/Variable.pm index 4751563a3..87baaddeb 100644 --- a/lib/Automake/Variable.pm +++ b/lib/Automake/Variable.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/Version.pm b/lib/Automake/Version.pm index c2d9dd7a7..b29d5bfda 100644 --- a/lib/Automake/Version.pm +++ b/lib/Automake/Version.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/lib/Automake/Wrap.pm b/lib/Automake/Wrap.pm index 0aa42e17d..e56817c1c 100644 --- a/lib/Automake/Wrap.pm +++ b/lib/Automake/Wrap.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/lib/Automake/XFile.pm b/lib/Automake/XFile.pm index 97307f956..8ad292a93 100644 --- a/lib/Automake/XFile.pm +++ b/lib/Automake/XFile.pm @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/lib/Makefile.inc b/lib/Makefile.inc index 8eed3038e..7f1d298fb 100644 --- a/lib/Makefile.inc +++ b/lib/Makefile.inc @@ -1,6 +1,6 @@ ## Included by top-level Makefile for Automake. -## Copyright (C) 1995-2013 Free Software Foundation, Inc. +## Copyright (C) 1995-2014 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 diff --git a/lib/am/Makefile.inc b/lib/am/Makefile.inc index da9468284..7fe59f9e4 100644 --- a/lib/am/Makefile.inc +++ b/lib/am/Makefile.inc @@ -1,6 +1,6 @@ ## Included by top-level Makefile for Automake. -## Copyright (C) 1995-2013 Free Software Foundation, Inc. +## Copyright (C) 1995-2014 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 diff --git a/lib/am/check.am b/lib/am/check.am index 4d2a498a3..869a72402 100644 --- a/lib/am/check.am +++ b/lib/am/check.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2001-2013 Free Software Foundation, Inc. +## Copyright (C) 2001-2014 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 diff --git a/lib/am/check2.am b/lib/am/check2.am index 79d2b5b49..eead73cab 100644 --- a/lib/am/check2.am +++ b/lib/am/check2.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2008-2013 Free Software Foundation, Inc. +## Copyright (C) 2008-2014 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 diff --git a/lib/am/clean-hdr.am b/lib/am/clean-hdr.am index 3c0d761eb..4afb580b7 100644 --- a/lib/am/clean-hdr.am +++ b/lib/am/clean-hdr.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/clean.am b/lib/am/clean.am index 8c3756653..5eb74b9e4 100644 --- a/lib/am/clean.am +++ b/lib/am/clean.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/compile.am b/lib/am/compile.am index 3e3b17184..fcef98455 100644 --- a/lib/am/compile.am +++ b/lib/am/compile.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/configure.am b/lib/am/configure.am index 6f39f7dbe..8f037fd1b 100644 --- a/lib/am/configure.am +++ b/lib/am/configure.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2001-2013 Free Software Foundation, Inc. +## Copyright (C) 2001-2014 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 diff --git a/lib/am/data.am b/lib/am/data.am index e0ef5629a..de4497706 100644 --- a/lib/am/data.am +++ b/lib/am/data.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/dejagnu.am b/lib/am/dejagnu.am index d2ca5344f..5ae86fe02 100644 --- a/lib/am/dejagnu.am +++ b/lib/am/dejagnu.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/depend.am b/lib/am/depend.am index 1c00aae16..00ba5b36f 100644 --- a/lib/am/depend.am +++ b/lib/am/depend.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/depend2.am b/lib/am/depend2.am index 5c6439ad6..551ead835 100644 --- a/lib/am/depend2.am +++ b/lib/am/depend2.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/distdir.am b/lib/am/distdir.am index f26a857e1..7834f3db8 100644 --- a/lib/am/distdir.am +++ b/lib/am/distdir.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2001-2013 Free Software Foundation, Inc. +## Copyright (C) 2001-2014 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 diff --git a/lib/am/footer.am b/lib/am/footer.am index dbc3ae44d..1c08c1e9e 100644 --- a/lib/am/footer.am +++ b/lib/am/footer.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/header-vars.am b/lib/am/header-vars.am index d25efa612..463531a90 100644 --- a/lib/am/header-vars.am +++ b/lib/am/header-vars.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/header.am b/lib/am/header.am index 0d93293a7..0d7d1d775 100644 --- a/lib/am/header.am +++ b/lib/am/header.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/inst-vars.am b/lib/am/inst-vars.am index 6e5c37baa..aa61e0e14 100644 --- a/lib/am/inst-vars.am +++ b/lib/am/inst-vars.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2004-2013 Free Software Foundation, Inc. +## Copyright (C) 2004-2014 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 diff --git a/lib/am/install.am b/lib/am/install.am index 47f7e679b..fc436d89c 100644 --- a/lib/am/install.am +++ b/lib/am/install.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2001-2013 Free Software Foundation, Inc. +## Copyright (C) 2001-2014 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 diff --git a/lib/am/java.am b/lib/am/java.am index e54121432..10230b57f 100644 --- a/lib/am/java.am +++ b/lib/am/java.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1998-2013 Free Software Foundation, Inc. +## Copyright (C) 1998-2014 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 diff --git a/lib/am/lang-compile.am b/lib/am/lang-compile.am index 900272000..be210ca65 100644 --- a/lib/am/lang-compile.am +++ b/lib/am/lang-compile.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2001-2013 Free Software Foundation, Inc. +## Copyright (C) 2001-2014 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 diff --git a/lib/am/lex.am b/lib/am/lex.am index 7fcc9c17f..9c89e3bc5 100644 --- a/lib/am/lex.am +++ b/lib/am/lex.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2001-2013 Free Software Foundation, Inc. +## Copyright (C) 2001-2014 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 diff --git a/lib/am/library.am b/lib/am/library.am index c01d221ef..7893539fe 100644 --- a/lib/am/library.am +++ b/lib/am/library.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/libs.am b/lib/am/libs.am index f2eb17b90..477a65a41 100644 --- a/lib/am/libs.am +++ b/lib/am/libs.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/libtool.am b/lib/am/libtool.am index 0aa8c084b..0acbdd94d 100644 --- a/lib/am/libtool.am +++ b/lib/am/libtool.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/lisp.am b/lib/am/lisp.am index bfb023f53..984c367b8 100644 --- a/lib/am/lisp.am +++ b/lib/am/lisp.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1996-2013 Free Software Foundation, Inc. +## Copyright (C) 1996-2014 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 diff --git a/lib/am/ltlib.am b/lib/am/ltlib.am index 9cf07045f..bdd014087 100644 --- a/lib/am/ltlib.am +++ b/lib/am/ltlib.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/ltlibrary.am b/lib/am/ltlibrary.am index 642d032ba..486fde3c2 100644 --- a/lib/am/ltlibrary.am +++ b/lib/am/ltlibrary.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/mans-vars.am b/lib/am/mans-vars.am index 7e866e728..f046c5d66 100644 --- a/lib/am/mans-vars.am +++ b/lib/am/mans-vars.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/mans.am b/lib/am/mans.am index 4abaa0d9b..9c93b20d6 100644 --- a/lib/am/mans.am +++ b/lib/am/mans.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1998-2013 Free Software Foundation, Inc. +## Copyright (C) 1998-2014 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 diff --git a/lib/am/program.am b/lib/am/program.am index 131c4a9c6..f7acc2e87 100644 --- a/lib/am/program.am +++ b/lib/am/program.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/progs.am b/lib/am/progs.am index 987927901..a2e55eb63 100644 --- a/lib/am/progs.am +++ b/lib/am/progs.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/python.am b/lib/am/python.am index 06545b187..5c36a2cf4 100644 --- a/lib/am/python.am +++ b/lib/am/python.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1999-2013 Free Software Foundation, Inc. +## Copyright (C) 1999-2014 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 diff --git a/lib/am/remake-hdr.am b/lib/am/remake-hdr.am index 979427d41..18414b7a7 100644 --- a/lib/am/remake-hdr.am +++ b/lib/am/remake-hdr.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/scripts.am b/lib/am/scripts.am index 0f5730aa7..71fffc0f4 100644 --- a/lib/am/scripts.am +++ b/lib/am/scripts.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/subdirs.am b/lib/am/subdirs.am index 999aa7877..88979554b 100644 --- a/lib/am/subdirs.am +++ b/lib/am/subdirs.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/tags.am b/lib/am/tags.am index 57eb1163c..51dee58cb 100644 --- a/lib/am/tags.am +++ b/lib/am/tags.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/texi-vers.am b/lib/am/texi-vers.am index bddf3827d..b3a8d1239 100644 --- a/lib/am/texi-vers.am +++ b/lib/am/texi-vers.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/texibuild.am b/lib/am/texibuild.am index a59d443ed..f9f345da7 100644 --- a/lib/am/texibuild.am +++ b/lib/am/texibuild.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/texinfos.am b/lib/am/texinfos.am index c2b080ab2..b33b105d8 100644 --- a/lib/am/texinfos.am +++ b/lib/am/texinfos.am @@ -1,6 +1,6 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994-2013 Free Software Foundation, Inc. +## Copyright (C) 1994-2014 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 diff --git a/lib/am/vala.am b/lib/am/vala.am index 12891754b..dd7fb4ff5 100644 --- a/lib/am/vala.am +++ b/lib/am/vala.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 2008-2013 Free Software Foundation, Inc. +## Copyright (C) 2008-2014 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 diff --git a/lib/am/yacc.am b/lib/am/yacc.am index a1fb43ea2..6daf8fc06 100644 --- a/lib/am/yacc.am +++ b/lib/am/yacc.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1998-2013 Free Software Foundation, Inc. +## Copyright (C) 1998-2014 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 diff --git a/lib/ar-lib b/lib/ar-lib index fe2301e71..463b9ec02 100755 --- a/lib/ar-lib +++ b/lib/ar-lib @@ -4,7 +4,7 @@ me=ar-lib scriptversion=2012-03-01.08; # UTC -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 Free Software Foundation, Inc. # Written by Peter Rosin . # # This program is free software; you can redistribute it and/or modify diff --git a/lib/compile b/lib/compile index 531136b06..a85b723c7 100755 --- a/lib/compile +++ b/lib/compile @@ -3,7 +3,7 @@ scriptversion=2012-10-14.11; # UTC -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify diff --git a/lib/depcomp b/lib/depcomp index 4ebd5b3a2..fc98710e2 100755 --- a/lib/depcomp +++ b/lib/depcomp @@ -3,7 +3,7 @@ scriptversion=2013-05-30.07; # UTC -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/lib/mdate-sh b/lib/mdate-sh index b3719cf76..e8dfaca1d 100755 --- a/lib/mdate-sh +++ b/lib/mdate-sh @@ -3,7 +3,7 @@ scriptversion=2010-08-21.06; # UTC -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 Free Software Foundation, Inc. # written by Ulrich Drepper , June 1995 # # This program is free software; you can redistribute it and/or modify diff --git a/lib/missing b/lib/missing index db98974ff..f62bbae30 100755 --- a/lib/missing +++ b/lib/missing @@ -3,7 +3,7 @@ scriptversion=2013-10-28.13; # UTC -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify diff --git a/lib/py-compile b/lib/py-compile index 46ea866a7..bc2039140 100755 --- a/lib/py-compile +++ b/lib/py-compile @@ -3,7 +3,7 @@ scriptversion=2011-06-08.12; # UTC -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/lib/tap-driver.sh b/lib/tap-driver.sh index ee61fc112..4254e2b3d 100755 --- a/lib/tap-driver.sh +++ b/lib/tap-driver.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/lib/test-driver b/lib/test-driver index 110eec409..8e575b017 100755 --- a/lib/test-driver +++ b/lib/test-driver @@ -3,7 +3,7 @@ scriptversion=2013-07-13.22; # UTC -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/lib/ylwrap b/lib/ylwrap index 8f072a8e9..7c2d927f7 100755 --- a/lib/ylwrap +++ b/lib/ylwrap @@ -3,7 +3,7 @@ scriptversion=2013-01-12.17; # UTC -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # Written by Tom Tromey . # diff --git a/m4/Makefile.inc b/m4/Makefile.inc index 8df189074..6b73b5a46 100644 --- a/m4/Makefile.inc +++ b/m4/Makefile.inc @@ -1,6 +1,6 @@ ## Included by top-level Makefile for Automake. -## Copyright (C) 1995-2013 Free Software Foundation, Inc. +## Copyright (C) 1995-2014 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 diff --git a/m4/amversion.in b/m4/amversion.in index e780f1ce9..38a198eee 100644 --- a/m4/amversion.in +++ b/m4/amversion.in @@ -1,6 +1,6 @@ ## -*- Autoconf -*- ## @configure_input@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/amversion.m4 b/m4/amversion.m4 index 9548bee73..f0cf7ad12 100644 --- a/m4/amversion.m4 +++ b/m4/amversion.m4 @@ -1,6 +1,6 @@ ## -*- Autoconf -*- ## Generated from amversion.in; do not edit by hand. -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/ar-lib.m4 b/m4/ar-lib.m4 index 58726d0b0..7751bf71a 100644 --- a/m4/ar-lib.m4 +++ b/m4/ar-lib.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/as.m4 b/m4/as.m4 index 46695dd85..5e6be98f4 100644 --- a/m4/as.m4 +++ b/m4/as.m4 @@ -1,6 +1,6 @@ # Figure out how to run the assembler. -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/auxdir.m4 b/m4/auxdir.m4 index a34f38ef4..1f8614d47 100644 --- a/m4/auxdir.m4 +++ b/m4/auxdir.m4 @@ -1,6 +1,6 @@ # AM_AUX_DIR_EXPAND -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/cond-if.m4 b/m4/cond-if.m4 index b6b372de8..afe83965c 100644 --- a/m4/cond-if.m4 +++ b/m4/cond-if.m4 @@ -1,6 +1,6 @@ # AM_COND_IF -*- Autoconf -*- -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/cond.m4 b/m4/cond.m4 index 2f91e0580..e9138865e 100644 --- a/m4/cond.m4 +++ b/m4/cond.m4 @@ -1,6 +1,6 @@ # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/depend.m4 b/m4/depend.m4 index a34cd5c20..fc1250223 100644 --- a/m4/depend.m4 +++ b/m4/depend.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/depout.m4 b/m4/depout.m4 index c79d04bb7..a59dcf59e 100644 --- a/m4/depout.m4 +++ b/m4/depout.m4 @@ -1,6 +1,6 @@ # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/dmalloc.m4 b/m4/dmalloc.m4 index d8819c9e8..e39216b9d 100644 --- a/m4/dmalloc.m4 +++ b/m4/dmalloc.m4 @@ -3,7 +3,7 @@ ## From Franc,ois Pinard ## ## ----------------------------------- ## -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/extra-recurs.m4 b/m4/extra-recurs.m4 index 02cc53fc1..9f7313137 100644 --- a/m4/extra-recurs.m4 +++ b/m4/extra-recurs.m4 @@ -1,6 +1,6 @@ # AM_EXTRA_RECURSIVE_TARGETS -*- Autoconf -*- -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/gcj.m4 b/m4/gcj.m4 index aebabc1da..4c83c6c72 100644 --- a/m4/gcj.m4 +++ b/m4/gcj.m4 @@ -1,7 +1,7 @@ # Check for Java compiler. -*- Autoconf -*- # For now we only handle the GNU compiler. -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/init.m4 b/m4/init.m4 index 05ad294fc..4841d5356 100644 --- a/m4/init.m4 +++ b/m4/init.m4 @@ -1,6 +1,6 @@ # Do all the work for Automake. -*- Autoconf -*- -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/install-sh.m4 b/m4/install-sh.m4 index dca2b691c..094c10a85 100644 --- a/m4/install-sh.m4 +++ b/m4/install-sh.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/internal/ac-config-macro-dirs.m4 b/m4/internal/ac-config-macro-dirs.m4 index 268488357..65be26e8f 100644 --- a/m4/internal/ac-config-macro-dirs.m4 +++ b/m4/internal/ac-config-macro-dirs.m4 @@ -4,7 +4,7 @@ # FIXME: keep in sync with the contents of the variable # '$ac_config_macro_dirs_fallback' in aclocal.in. -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/lead-dot.m4 b/m4/lead-dot.m4 index 4dd798b93..b01ec15ab 100644 --- a/m4/lead-dot.m4 +++ b/m4/lead-dot.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/lex.m4 b/m4/lex.m4 index d97daa353..015530621 100644 --- a/m4/lex.m4 +++ b/m4/lex.m4 @@ -1,6 +1,6 @@ ## Replacement for AC_PROG_LEX. -*- Autoconf -*- ## by Alexandre Oliva -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/lispdir.m4 b/m4/lispdir.m4 index 4e0c9140d..95a88da30 100644 --- a/m4/lispdir.m4 +++ b/m4/lispdir.m4 @@ -3,7 +3,7 @@ ## From Ulrich Drepper ## Almost entirely rewritten by Alexandre Oliva ## ------------------------ -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/maintainer.m4 b/m4/maintainer.m4 index fc98244ec..ced219f13 100644 --- a/m4/maintainer.m4 +++ b/m4/maintainer.m4 @@ -1,7 +1,7 @@ # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/make.m4 b/m4/make.m4 index 3412d1714..a82d2d28c 100644 --- a/m4/make.m4 +++ b/m4/make.m4 @@ -1,6 +1,6 @@ # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/missing.m4 b/m4/missing.m4 index 6dea461d4..c80b39cfb 100644 --- a/m4/missing.m4 +++ b/m4/missing.m4 @@ -1,6 +1,6 @@ # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/mkdirp.m4 b/m4/mkdirp.m4 index 0b90d2c0a..c47e907eb 100644 --- a/m4/mkdirp.m4 +++ b/m4/mkdirp.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/obsolete.m4 b/m4/obsolete.m4 index f7ec1dbcd..9905156a6 100644 --- a/m4/obsolete.m4 +++ b/m4/obsolete.m4 @@ -2,7 +2,7 @@ # Obsolete and "removed" macros, that must however still report explicit # error messages when used, to smooth transition. # -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/options.m4 b/m4/options.m4 index 01ce20c0d..c2e29907e 100644 --- a/m4/options.m4 +++ b/m4/options.m4 @@ -1,6 +1,6 @@ # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/prog-cc-c-o.m4 b/m4/prog-cc-c-o.m4 index 3b2a849b0..e3ae542fe 100644 --- a/m4/prog-cc-c-o.m4 +++ b/m4/prog-cc-c-o.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/python.m4 b/m4/python.m4 index 4f16355ad..5b2c695c0 100644 --- a/m4/python.m4 +++ b/m4/python.m4 @@ -3,7 +3,7 @@ ## From Andrew Dalke ## Updated by James Henstridge ## ------------------------ -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/runlog.m4 b/m4/runlog.m4 index b3a668288..b09a53818 100644 --- a/m4/runlog.m4 +++ b/m4/runlog.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/sanity.m4 b/m4/sanity.m4 index 8ae5560bb..e89f15a89 100644 --- a/m4/sanity.m4 +++ b/m4/sanity.m4 @@ -1,6 +1,6 @@ # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/silent.m4 b/m4/silent.m4 index 6fb3c221c..dc182c127 100644 --- a/m4/silent.m4 +++ b/m4/silent.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/strip.m4 b/m4/strip.m4 index d0b7c6500..4fbcfde96 100644 --- a/m4/strip.m4 +++ b/m4/strip.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/substnot.m4 b/m4/substnot.m4 index 52dc5a1b3..e3f26d56d 100644 --- a/m4/substnot.m4 +++ b/m4/substnot.m4 @@ -1,5 +1,5 @@ ## -*- Autoconf -*- -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/tar.m4 b/m4/tar.m4 index 539aa3a46..a7d1896b7 100644 --- a/m4/tar.m4 +++ b/m4/tar.m4 @@ -1,6 +1,6 @@ # Check how to create a tarball. -*- Autoconf -*- -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/upc.m4 b/m4/upc.m4 index b85fc0274..f654652a1 100644 --- a/m4/upc.m4 +++ b/m4/upc.m4 @@ -1,6 +1,6 @@ # Find a compiler for Unified Parallel C. -*- Autoconf -*- -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/m4/vala.m4 b/m4/vala.m4 index c0104f1b7..00d1b72ca 100644 --- a/m4/vala.m4 +++ b/m4/vala.m4 @@ -1,6 +1,6 @@ # Autoconf support for the Vala compiler -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, diff --git a/maintainer/am-ft b/maintainer/am-ft index 81a1dc5e2..912689c98 100755 --- a/maintainer/am-ft +++ b/maintainer/am-ft @@ -2,7 +2,7 @@ # Remote testing of Automake tarballs made easy. # This script requires Bash 4.x or later. -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/maintainer/am-xft b/maintainer/am-xft index d7fee4cbb..c38b07d70 100755 --- a/maintainer/am-xft +++ b/maintainer/am-xft @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/maintainer/maint.mk b/maintainer/maint.mk index d180b09b7..b9dd0e90c 100644 --- a/maintainer/maint.mk +++ b/maintainer/maint.mk @@ -1,6 +1,6 @@ # Maintainer makefile rules for Automake. # -# Copyright (C) 1995-2013 Free Software Foundation, Inc. +# Copyright (C) 1995-2014 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 diff --git a/maintainer/rename-tests b/maintainer/rename-tests index ca65e345c..992ea66bf 100755 --- a/maintainer/rename-tests +++ b/maintainer/rename-tests @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Convenience script to rename test cases in Automake. -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/maintainer/syntax-checks.mk b/maintainer/syntax-checks.mk index 5d08750da..7138c5d09 100644 --- a/maintainer/syntax-checks.mk +++ b/maintainer/syntax-checks.mk @@ -1,6 +1,6 @@ # Maintainer checks for Automake. Requires GNU make. -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/old/ChangeLog-tests b/old/ChangeLog-tests index 03e2e96a0..bd0175c7f 100644 --- a/old/ChangeLog-tests +++ b/old/ChangeLog-tests @@ -1442,7 +1442,7 @@ Sat Feb 10 17:08:39 1996 Tom Tromey ----- -Copyright 2012-2013 Free Software Foundation, Inc. +Copyright 2012-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.00 b/old/ChangeLog.00 index 47efc9c18..ce43ef850 100644 --- a/old/ChangeLog.00 +++ b/old/ChangeLog.00 @@ -2205,7 +2205,7 @@ ----- -Copyright 1999-2013 Free Software Foundation, Inc. +Copyright 1999-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.01 b/old/ChangeLog.01 index c4fa96c67..be5df4e3e 100644 --- a/old/ChangeLog.01 +++ b/old/ChangeLog.01 @@ -4931,7 +4931,7 @@ ----- -Copyright (C) 2001-2013 Free Software Foundation, Inc. +Copyright (C) 2001-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.02 b/old/ChangeLog.02 index 9bd2539e5..b52164388 100644 --- a/old/ChangeLog.02 +++ b/old/ChangeLog.02 @@ -3219,7 +3219,7 @@ ----- -Copyright (C) 2002-2013 Free Software Foundation, Inc. +Copyright (C) 2002-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.03 b/old/ChangeLog.03 index 2e52fd39f..9b6aa68c5 100644 --- a/old/ChangeLog.03 +++ b/old/ChangeLog.03 @@ -2965,7 +2965,7 @@ ----- -Copyright (C) 2003-2013 Free Software Foundation, Inc. +Copyright (C) 2003-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.04 b/old/ChangeLog.04 index b88fee2c0..cac59b88e 100644 --- a/old/ChangeLog.04 +++ b/old/ChangeLog.04 @@ -1613,7 +1613,7 @@ ----- -Copyright (C) 2004-2013 Free Software Foundation, Inc. +Copyright (C) 2004-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.09 b/old/ChangeLog.09 index 6f45c38cf..479230ddc 100644 --- a/old/ChangeLog.09 +++ b/old/ChangeLog.09 @@ -5757,7 +5757,7 @@ ----- -Copyright (C) 2005-2013 Free Software Foundation, Inc. +Copyright (C) 2005-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.11 b/old/ChangeLog.11 index 053fe03ad..57a638146 100644 --- a/old/ChangeLog.11 +++ b/old/ChangeLog.11 @@ -13097,7 +13097,7 @@ ----- -Copyright (C) 2010-2013 Free Software Foundation, Inc. +Copyright (C) 2010-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.96 b/old/ChangeLog.96 index dc49ecc1d..7be690ad9 100644 --- a/old/ChangeLog.96 +++ b/old/ChangeLog.96 @@ -3679,7 +3679,7 @@ Mon Sep 19 23:39:21 1994 djm ----- -Copyright 1994-2013 Free Software Foundation, Inc. +Copyright 1994-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/ChangeLog.98 b/old/ChangeLog.98 index 94a72d137..f7e751960 100644 --- a/old/ChangeLog.98 +++ b/old/ChangeLog.98 @@ -2185,7 +2185,7 @@ Thu Jan 2 14:16:17 1997 Tom Tromey ----- -Copyright 1997-2013 Free Software Foundation, Inc. +Copyright 1997-2014 Free Software Foundation, Inc. Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved. diff --git a/old/TODO b/old/TODO index 0055c667e..c7dd8afba 100644 --- a/old/TODO +++ b/old/TODO @@ -483,7 +483,7 @@ that aren't mentioned? * copyright notice -Copyright 1994-2013 Free Software Foundation, Inc. +Copyright 1994-2014 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 diff --git a/t/CheckListOfTests.am b/t/CheckListOfTests.am index d2f4bd238..25a2055e2 100644 --- a/t/CheckListOfTests.am +++ b/t/CheckListOfTests.am @@ -1,6 +1,6 @@ ## -*- Automake -*- ## -## Copyright (C) 2011-2013 Free Software Foundation, Inc. +## Copyright (C) 2011-2014 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 diff --git a/t/Makefile.inc b/t/Makefile.inc index b9dd5e0e0..5f10d90ef 100644 --- a/t/Makefile.inc +++ b/t/Makefile.inc @@ -1,6 +1,6 @@ ## Included by top-level Makefile for Automake. -## Copyright (C) 1995-2013 Free Software Foundation, Inc. +## Copyright (C) 1995-2014 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 diff --git a/t/ac-output-old.tap b/t/ac-output-old.tap index 5b2c2310c..ef9b043f3 100644 --- a/t/ac-output-old.tap +++ b/t/ac-output-old.tap @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/aclocal-I-and-install.sh b/t/aclocal-I-and-install.sh index 7c1b0d403..ec26fbc2a 100644 --- a/t/aclocal-I-and-install.sh +++ b/t/aclocal-I-and-install.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-I-order-1.sh b/t/aclocal-I-order-1.sh index d9003e030..a5cf335d1 100644 --- a/t/aclocal-I-order-1.sh +++ b/t/aclocal-I-order-1.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-I-order-2.sh b/t/aclocal-I-order-2.sh index c3fe00a95..449d0d8f6 100644 --- a/t/aclocal-I-order-2.sh +++ b/t/aclocal-I-order-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-I-order-3.sh b/t/aclocal-I-order-3.sh index 4fcbf4c99..f1b33320f 100644 --- a/t/aclocal-I-order-3.sh +++ b/t/aclocal-I-order-3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-acdir.sh b/t/aclocal-acdir.sh index 80eba3126..33ac66a95 100644 --- a/t/aclocal-acdir.sh +++ b/t/aclocal-acdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal-amflags.sh b/t/aclocal-amflags.sh index c0903b4f9..f9f9ec3f3 100644 --- a/t/aclocal-amflags.sh +++ b/t/aclocal-amflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/aclocal-autoconf-version-check.sh b/t/aclocal-autoconf-version-check.sh index 64910d04a..f862e36aa 100644 --- a/t/aclocal-autoconf-version-check.sh +++ b/t/aclocal-autoconf-version-check.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/aclocal-comments-respected.sh b/t/aclocal-comments-respected.sh index ab2a3daea..28246afd2 100644 --- a/t/aclocal-comments-respected.sh +++ b/t/aclocal-comments-respected.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/aclocal-deleted-header-aclocal-amflags.sh b/t/aclocal-deleted-header-aclocal-amflags.sh index e36315779..379706fc9 100644 --- a/t/aclocal-deleted-header-aclocal-amflags.sh +++ b/t/aclocal-deleted-header-aclocal-amflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/aclocal-deleted-header.sh b/t/aclocal-deleted-header.sh index 4d031de4c..c52b64bfc 100644 --- a/t/aclocal-deleted-header.sh +++ b/t/aclocal-deleted-header.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/aclocal-deps-subdir.sh b/t/aclocal-deps-subdir.sh index f97d3740b..875569e90 100644 --- a/t/aclocal-deps-subdir.sh +++ b/t/aclocal-deps-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-deps.sh b/t/aclocal-deps.sh index 630282e0b..442dac976 100644 --- a/t/aclocal-deps.sh +++ b/t/aclocal-deps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-dirlist-abspath.sh b/t/aclocal-dirlist-abspath.sh index b3e56458e..e6a11bc43 100644 --- a/t/aclocal-dirlist-abspath.sh +++ b/t/aclocal-dirlist-abspath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/aclocal-dirlist-globbing.sh b/t/aclocal-dirlist-globbing.sh index fe372172d..b4c366a5b 100644 --- a/t/aclocal-dirlist-globbing.sh +++ b/t/aclocal-dirlist-globbing.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/aclocal-dirlist.sh b/t/aclocal-dirlist.sh index c8cf0a2ea..c5c205ec4 100644 --- a/t/aclocal-dirlist.sh +++ b/t/aclocal-dirlist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/aclocal-install-absdir.sh b/t/aclocal-install-absdir.sh index 998678f4c..1d49acde0 100644 --- a/t/aclocal-install-absdir.sh +++ b/t/aclocal-install-absdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal-install-fail.sh b/t/aclocal-install-fail.sh index e67535628..c8799caab 100644 --- a/t/aclocal-install-fail.sh +++ b/t/aclocal-install-fail.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/aclocal-install-mkdir.sh b/t/aclocal-install-mkdir.sh index 0264598af..d857f49e0 100644 --- a/t/aclocal-install-mkdir.sh +++ b/t/aclocal-install-mkdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/aclocal-m4-include-are-scanned-aclocal-amflags.sh b/t/aclocal-m4-include-are-scanned-aclocal-amflags.sh index 4adf05c59..c99047cc8 100644 --- a/t/aclocal-m4-include-are-scanned-aclocal-amflags.sh +++ b/t/aclocal-m4-include-are-scanned-aclocal-amflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/aclocal-m4-include-are-scanned.sh b/t/aclocal-m4-include-are-scanned.sh index 8fc34465c..fac884ef0 100644 --- a/t/aclocal-m4-include-are-scanned.sh +++ b/t/aclocal-m4-include-are-scanned.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/aclocal-m4-sinclude.sh b/t/aclocal-m4-sinclude.sh index 635c0eaf0..702e684a6 100644 --- a/t/aclocal-m4-sinclude.sh +++ b/t/aclocal-m4-sinclude.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-macrodir.tap b/t/aclocal-macrodir.tap index 4d11917b1..f5a8fec11 100644 --- a/t/aclocal-macrodir.tap +++ b/t/aclocal-macrodir.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/aclocal-macrodirs.tap b/t/aclocal-macrodirs.tap index 1cbf6d7bc..6c574ac2e 100644 --- a/t/aclocal-macrodirs.tap +++ b/t/aclocal-macrodirs.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/aclocal-missing-macros.sh b/t/aclocal-missing-macros.sh index f5dded6fb..1ee19529b 100644 --- a/t/aclocal-missing-macros.sh +++ b/t/aclocal-missing-macros.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/aclocal-no-extra-scan.sh b/t/aclocal-no-extra-scan.sh index d39cc67fd..a027598cf 100644 --- a/t/aclocal-no-extra-scan.sh +++ b/t/aclocal-no-extra-scan.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/aclocal-no-force.sh b/t/aclocal-no-force.sh index 4be3b9ac4..b8c7a7860 100644 --- a/t/aclocal-no-force.sh +++ b/t/aclocal-no-force.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-no-install-no-mkdir.sh b/t/aclocal-no-install-no-mkdir.sh index 60b43f9d7..0694affe9 100644 --- a/t/aclocal-no-install-no-mkdir.sh +++ b/t/aclocal-no-install-no-mkdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/aclocal-no-symlinked-overwrite.sh b/t/aclocal-no-symlinked-overwrite.sh index 8da674453..9a31f6a17 100644 --- a/t/aclocal-no-symlinked-overwrite.sh +++ b/t/aclocal-no-symlinked-overwrite.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/aclocal-no-unused-required.sh b/t/aclocal-no-unused-required.sh index 29ff8f511..7ce4a0371 100644 --- a/t/aclocal-no-unused-required.sh +++ b/t/aclocal-no-unused-required.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-path-install-serial.sh b/t/aclocal-path-install-serial.sh index b258d1a1f..60b48e71f 100644 --- a/t/aclocal-path-install-serial.sh +++ b/t/aclocal-path-install-serial.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal-path-install.sh b/t/aclocal-path-install.sh index 970547a2b..67b27fbd9 100644 --- a/t/aclocal-path-install.sh +++ b/t/aclocal-path-install.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal-path-nonexistent.sh b/t/aclocal-path-nonexistent.sh index 8315816af..8bbfe27c9 100644 --- a/t/aclocal-path-nonexistent.sh +++ b/t/aclocal-path-nonexistent.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal-path-precedence.sh b/t/aclocal-path-precedence.sh index 1d666dfb0..cfd81cf27 100644 --- a/t/aclocal-path-precedence.sh +++ b/t/aclocal-path-precedence.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal-path.sh b/t/aclocal-path.sh index d5383968b..75c52ac44 100644 --- a/t/aclocal-path.sh +++ b/t/aclocal-path.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal-pr450.sh b/t/aclocal-pr450.sh index 184cc335c..b27ef0b07 100644 --- a/t/aclocal-pr450.sh +++ b/t/aclocal-pr450.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/aclocal-print-acdir.sh b/t/aclocal-print-acdir.sh index 86b0fc492..3d02aebee 100644 --- a/t/aclocal-print-acdir.sh +++ b/t/aclocal-print-acdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal-remake-misc.sh b/t/aclocal-remake-misc.sh index 3406928d8..5854629c9 100644 --- a/t/aclocal-remake-misc.sh +++ b/t/aclocal-remake-misc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/aclocal-req.sh b/t/aclocal-req.sh index a0d17dd66..ffd2ca572 100644 --- a/t/aclocal-req.sh +++ b/t/aclocal-req.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/aclocal-scan-configure-ac-pr319.sh b/t/aclocal-scan-configure-ac-pr319.sh index 9d11d0f16..48ffe1863 100644 --- a/t/aclocal-scan-configure-ac-pr319.sh +++ b/t/aclocal-scan-configure-ac-pr319.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/aclocal-serial.sh b/t/aclocal-serial.sh index dd35d2a65..6e0cc101f 100644 --- a/t/aclocal-serial.sh +++ b/t/aclocal-serial.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/aclocal-underquoted-defun.sh b/t/aclocal-underquoted-defun.sh index 7753db966..599564c20 100644 --- a/t/aclocal-underquoted-defun.sh +++ b/t/aclocal-underquoted-defun.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/aclocal-verbose-install.sh b/t/aclocal-verbose-install.sh index 3a0afcbf8..bcf6d2692 100644 --- a/t/aclocal-verbose-install.sh +++ b/t/aclocal-verbose-install.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aclocal.sh b/t/aclocal.sh index f2983457a..69c695b6b 100644 --- a/t/aclocal.sh +++ b/t/aclocal.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/acsilent.sh b/t/acsilent.sh index f17b20799..ec0f1d206 100644 --- a/t/acsilent.sh +++ b/t/acsilent.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/acsubst.sh b/t/acsubst.sh index ff629e9b2..1da7795ca 100644 --- a/t/acsubst.sh +++ b/t/acsubst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/acsubst2.sh b/t/acsubst2.sh index fc7c9ad17..3639ecad2 100644 --- a/t/acsubst2.sh +++ b/t/acsubst2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/add-missing-install-sh.sh b/t/add-missing-install-sh.sh index 33cf5f5aa..846498b23 100644 --- a/t/add-missing-install-sh.sh +++ b/t/add-missing-install-sh.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/add-missing-multiple.sh b/t/add-missing-multiple.sh index 6e6ce7a25..8c76d635a 100644 --- a/t/add-missing-multiple.sh +++ b/t/add-missing-multiple.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/add-missing.tap b/t/add-missing.tap index e0a628b15..3352b8fd8 100644 --- a/t/add-missing.tap +++ b/t/add-missing.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/all.sh b/t/all.sh index cefafe81b..e6721a713 100644 --- a/t/all.sh +++ b/t/all.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/all2.sh b/t/all2.sh index 88f230f0f..630b22006 100644 --- a/t/all2.sh +++ b/t/all2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/alloca.sh b/t/alloca.sh index 7829dbf86..d0e2745ce 100644 --- a/t/alloca.sh +++ b/t/alloca.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/alloca2.sh b/t/alloca2.sh index 044b78a75..34d9b330f 100644 --- a/t/alloca2.sh +++ b/t/alloca2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/alpha.sh b/t/alpha.sh index bbcc14b94..8220d8970 100644 --- a/t/alpha.sh +++ b/t/alpha.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/alpha2.sh b/t/alpha2.sh index b9a1e0f95..774a6f567 100644 --- a/t/alpha2.sh +++ b/t/alpha2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/am-config-header.sh b/t/am-config-header.sh index 49410e896..1f47a7721 100644 --- a/t/am-config-header.sh +++ b/t/am-config-header.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/am-default-source-ext.sh b/t/am-default-source-ext.sh index 4452559b6..41b6a71b8 100644 --- a/t/am-default-source-ext.sh +++ b/t/am-default-source-ext.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/am-macro-not-found.sh b/t/am-macro-not-found.sh index b4dc83a74..d42523d78 100644 --- a/t/am-macro-not-found.sh +++ b/t/am-macro-not-found.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/am-missing-prog.sh b/t/am-missing-prog.sh index e30666efb..e691fc493 100644 --- a/t/am-missing-prog.sh +++ b/t/am-missing-prog.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/am-prog-cc-c-o.sh b/t/am-prog-cc-c-o.sh index 08522a472..c9a7ec16a 100644 --- a/t/am-prog-cc-c-o.sh +++ b/t/am-prog-cc-c-o.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/am-prog-cc-stdc.sh b/t/am-prog-cc-stdc.sh index e3e469c73..e20aa9da1 100644 --- a/t/am-prog-cc-stdc.sh +++ b/t/am-prog-cc-stdc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/am-tests-environment.sh b/t/am-tests-environment.sh index 9c387d9f3..9e9e20f3c 100644 --- a/t/am-tests-environment.sh +++ b/t/am-tests-environment.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/amassign.sh b/t/amassign.sh index eee85d6ba..36f9353d6 100644 --- a/t/amassign.sh +++ b/t/amassign.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/amhello-binpkg.sh b/t/amhello-binpkg.sh index c7a191668..5dfdd3378 100644 --- a/t/amhello-binpkg.sh +++ b/t/amhello-binpkg.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/amhello-cflags.sh b/t/amhello-cflags.sh index b67fb4fd5..04ff09f62 100644 --- a/t/amhello-cflags.sh +++ b/t/amhello-cflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/amhello-cross-compile.sh b/t/amhello-cross-compile.sh index cdff77622..657d7a0ee 100644 --- a/t/amhello-cross-compile.sh +++ b/t/amhello-cross-compile.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/aminit-moreargs-deprecation.sh b/t/aminit-moreargs-deprecation.sh index d704c983f..5eeca8717 100644 --- a/t/aminit-moreargs-deprecation.sh +++ b/t/aminit-moreargs-deprecation.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/amopt.sh b/t/amopt.sh index 19c2c7a9f..9608fa6ef 100644 --- a/t/amopt.sh +++ b/t/amopt.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/amopts-location.sh b/t/amopts-location.sh index 05356c1b5..fc1af5e4c 100644 --- a/t/amopts-location.sh +++ b/t/amopts-location.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/amopts-variable-expansion.sh b/t/amopts-variable-expansion.sh index 46d604964..003b1bd6c 100644 --- a/t/amopts-variable-expansion.sh +++ b/t/amopts-variable-expansion.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/amsubst.sh b/t/amsubst.sh index 8b42e184a..fe00e883d 100644 --- a/t/amsubst.sh +++ b/t/amsubst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/ansi2knr-no-more.sh b/t/ansi2knr-no-more.sh index b2b575239..9f46dd3ba 100644 --- a/t/ansi2knr-no-more.sh +++ b/t/ansi2knr-no-more.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar-lib.sh b/t/ar-lib.sh index c59cd0b11..38f670dc0 100644 --- a/t/ar-lib.sh +++ b/t/ar-lib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/ar-lib2.sh b/t/ar-lib2.sh index 74b6393b3..d469f3965 100644 --- a/t/ar-lib2.sh +++ b/t/ar-lib2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar-lib3.sh b/t/ar-lib3.sh index b9b8f8da1..6630c6e3f 100644 --- a/t/ar-lib3.sh +++ b/t/ar-lib3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar-lib4.sh b/t/ar-lib4.sh index 4d3c40ae0..ebc4ee0fd 100644 --- a/t/ar-lib4.sh +++ b/t/ar-lib4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar-lib5a.sh b/t/ar-lib5a.sh index 78488cf4b..8dc845799 100644 --- a/t/ar-lib5a.sh +++ b/t/ar-lib5a.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar-lib5b.sh b/t/ar-lib5b.sh index aff1eb16e..e2aac02a7 100644 --- a/t/ar-lib5b.sh +++ b/t/ar-lib5b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar-lib6a.sh b/t/ar-lib6a.sh index cb386ed6e..416912b9d 100644 --- a/t/ar-lib6a.sh +++ b/t/ar-lib6a.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar-lib6b.sh b/t/ar-lib6b.sh index 88fdac414..0070866bb 100644 --- a/t/ar-lib6b.sh +++ b/t/ar-lib6b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar-lib7.sh b/t/ar-lib7.sh index 587de49a9..6910fb35d 100644 --- a/t/ar-lib7.sh +++ b/t/ar-lib7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar.sh b/t/ar.sh index 58fbf8b44..21a3444bc 100644 --- a/t/ar.sh +++ b/t/ar.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/ar2.sh b/t/ar2.sh index fd2d9b402..c820688a2 100644 --- a/t/ar2.sh +++ b/t/ar2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/ar3.sh b/t/ar3.sh index a41ce15cf..87aff104a 100644 --- a/t/ar3.sh +++ b/t/ar3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar4.sh b/t/ar4.sh index 388f602aa..574bb33de 100644 --- a/t/ar4.sh +++ b/t/ar4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ar5.sh b/t/ar5.sh index d44976ce9..8e6ee9b79 100644 --- a/t/ar5.sh +++ b/t/ar5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/asm.sh b/t/asm.sh index d465033fe..f41c12df3 100644 --- a/t/asm.sh +++ b/t/asm.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/asm2.sh b/t/asm2.sh index 5c731f459..4210cdaf3 100644 --- a/t/asm2.sh +++ b/t/asm2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/asm3.sh b/t/asm3.sh index 967af1de5..a2f4e417d 100644 --- a/t/asm3.sh +++ b/t/asm3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/autodist-acconfig-no-subdir.sh b/t/autodist-acconfig-no-subdir.sh index 1c7ea17b6..a368f60eb 100644 --- a/t/autodist-acconfig-no-subdir.sh +++ b/t/autodist-acconfig-no-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autodist-acconfig.sh b/t/autodist-acconfig.sh index 2a17f83b6..ec3c7a66f 100644 --- a/t/autodist-acconfig.sh +++ b/t/autodist-acconfig.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autodist-aclocal-m4.sh b/t/autodist-aclocal-m4.sh index 1e4c8631c..edae774fc 100644 --- a/t/autodist-aclocal-m4.sh +++ b/t/autodist-aclocal-m4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autodist-config-headers.sh b/t/autodist-config-headers.sh index da4d06ce8..cb59346ae 100644 --- a/t/autodist-config-headers.sh +++ b/t/autodist-config-headers.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autodist-configure-no-subdir.sh b/t/autodist-configure-no-subdir.sh index 44f382570..492ee05e7 100644 --- a/t/autodist-configure-no-subdir.sh +++ b/t/autodist-configure-no-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autodist-no-duplicate.sh b/t/autodist-no-duplicate.sh index 7f5ed1d52..cae2f4b71 100644 --- a/t/autodist-no-duplicate.sh +++ b/t/autodist-no-duplicate.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autodist-stamp-vti.sh b/t/autodist-stamp-vti.sh index 3bb31f979..18cb237b3 100644 --- a/t/autodist-stamp-vti.sh +++ b/t/autodist-stamp-vti.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autodist-subdir.sh b/t/autodist-subdir.sh index f88a0095e..b7579ee18 100644 --- a/t/autodist-subdir.sh +++ b/t/autodist-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autodist.sh b/t/autodist.sh index acc9a5488..a0ded8cee 100644 --- a/t/autodist.sh +++ b/t/autodist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/autohdr-subdir-pr12495.sh b/t/autohdr-subdir-pr12495.sh index dcb962037..62b340c9a 100644 --- a/t/autohdr-subdir-pr12495.sh +++ b/t/autohdr-subdir-pr12495.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/autohdr.sh b/t/autohdr.sh index 3735d0e49..9f386cbd5 100644 --- a/t/autohdr.sh +++ b/t/autohdr.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/autohdr3.sh b/t/autohdr3.sh index c73e0f194..e79befadd 100644 --- a/t/autohdr3.sh +++ b/t/autohdr3.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/autohdr4.sh b/t/autohdr4.sh index 4295aa19f..9a422cfd5 100644 --- a/t/autohdr4.sh +++ b/t/autohdr4.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/autohdrdry.sh b/t/autohdrdry.sh index a4c2bceb9..2871257fb 100644 --- a/t/autohdrdry.sh +++ b/t/autohdrdry.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/automake-cmdline.tap b/t/automake-cmdline.tap index 974b99e5c..02c7fe96c 100644 --- a/t/automake-cmdline.tap +++ b/t/automake-cmdline.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/auxdir-autodetect.sh b/t/auxdir-autodetect.sh index 457e06a52..07ed23e13 100644 --- a/t/auxdir-autodetect.sh +++ b/t/auxdir-autodetect.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/auxdir-computed.tap b/t/auxdir-computed.tap index ceb3acde8..b487125da 100644 --- a/t/auxdir-computed.tap +++ b/t/auxdir-computed.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/auxdir-misplaced.sh b/t/auxdir-misplaced.sh index 529aff410..3b2fe3b7a 100644 --- a/t/auxdir-misplaced.sh +++ b/t/auxdir-misplaced.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/auxdir-nonexistent.sh b/t/auxdir-nonexistent.sh index 58617f674..1d4ae89ec 100644 --- a/t/auxdir-nonexistent.sh +++ b/t/auxdir-nonexistent.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/auxdir-unportable.tap b/t/auxdir-unportable.tap index 38b73244d..bff01a682 100644 --- a/t/auxdir-unportable.tap +++ b/t/auxdir-unportable.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/auxdir.sh b/t/auxdir.sh index 38b2bb7d3..cd8221926 100644 --- a/t/auxdir.sh +++ b/t/auxdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/auxdir6.sh b/t/auxdir6.sh index 48a497b27..001a3f48f 100644 --- a/t/auxdir6.sh +++ b/t/auxdir6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/auxdir7.sh b/t/auxdir7.sh index d832ef757..0365c3ba4 100644 --- a/t/auxdir7.sh +++ b/t/auxdir7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/auxdir8.sh b/t/auxdir8.sh index dd5073860..0c676e89e 100644 --- a/t/auxdir8.sh +++ b/t/auxdir8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/ax/am-test-lib.sh b/t/ax/am-test-lib.sh index cee5c8da8..408ea1d75 100644 --- a/t/ax/am-test-lib.sh +++ b/t/ax/am-test-lib.sh @@ -1,6 +1,6 @@ # -*- shell-script -*- # -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/ax/cc-no-c-o.in b/t/ax/cc-no-c-o.in index bbc9ec900..ececbcdc9 100644 --- a/t/ax/cc-no-c-o.in +++ b/t/ax/cc-no-c-o.in @@ -1,5 +1,5 @@ #! @AM_TEST_RUNNER_SHELL@ -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/ax/deltree.pl b/t/ax/deltree.pl index 9b638dd19..3bc5ea808 100644 --- a/t/ax/deltree.pl +++ b/t/ax/deltree.pl @@ -2,7 +2,7 @@ # deltree: recursively removes file and directory, # trying to handle permissions and other complications. -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/ax/depcomp.sh b/t/ax/depcomp.sh index 03b0b7e17..82b58a305 100644 --- a/t/ax/depcomp.sh +++ b/t/ax/depcomp.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/ax/distcheck-hook-m4.am b/t/ax/distcheck-hook-m4.am index cf9a310e5..241d21ab1 100644 --- a/t/ax/distcheck-hook-m4.am +++ b/t/ax/distcheck-hook-m4.am @@ -1,6 +1,6 @@ ## Data files for some tests. Not used in the automake build system. ## -## Copyright (C) 2011-2013 Free Software Foundation, Inc. +## Copyright (C) 2011-2014 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 diff --git a/t/ax/extract-testsuite-summary.pl b/t/ax/extract-testsuite-summary.pl index e44622c33..622b01e54 100644 --- a/t/ax/extract-testsuite-summary.pl +++ b/t/ax/extract-testsuite-summary.pl @@ -2,7 +2,7 @@ # Extract the testsuite summary generated by the parallel testsuite # harness from the output of "make check". -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/ax/is b/t/ax/is index 055a930b6..90e7d0826 100755 --- a/t/ax/is +++ b/t/ax/is @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/ax/is_newest b/t/ax/is_newest index 14d8b79b3..def8e7c2b 100755 --- a/t/ax/is_newest +++ b/t/ax/is_newest @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/ax/runtest.in b/t/ax/runtest.in index 57ce889c1..824baafd9 100644 --- a/t/ax/runtest.in +++ b/t/ax/runtest.in @@ -1,7 +1,7 @@ #!@AM_TEST_RUNNER_SHELL@ # @configure_input@ # -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/ax/shell-no-trail-bslash.in b/t/ax/shell-no-trail-bslash.in index f785de8a8..770dcdee4 100644 --- a/t/ax/shell-no-trail-bslash.in +++ b/t/ax/shell-no-trail-bslash.in @@ -1,5 +1,5 @@ #! @AM_TEST_RUNNER_SHELL@ -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/ax/tap-functions.sh b/t/ax/tap-functions.sh index 9849ae0c7..136291c81 100644 --- a/t/ax/tap-functions.sh +++ b/t/ax/tap-functions.sh @@ -1,6 +1,6 @@ # -*- shell-script -*- # -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ax/tap-setup.sh b/t/ax/tap-setup.sh index 3c992a388..312ce654f 100644 --- a/t/ax/tap-setup.sh +++ b/t/ax/tap-setup.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ax/tap-summary-aux.sh b/t/ax/tap-summary-aux.sh index a914087a9..e60489aa1 100644 --- a/t/ax/tap-summary-aux.sh +++ b/t/ax/tap-summary-aux.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ax/test-defs.in b/t/ax/test-defs.in index c716cab97..5bc30fce7 100644 --- a/t/ax/test-defs.in +++ b/t/ax/test-defs.in @@ -1,7 +1,7 @@ # -*- shell-script -*- # @configure_input@ # -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/ax/test-init.sh b/t/ax/test-init.sh index daf0bba45..5db20aebd 100644 --- a/t/ax/test-init.sh +++ b/t/ax/test-init.sh @@ -1,6 +1,6 @@ # -*- shell-script -*- # -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/ax/test-lib.sh b/t/ax/test-lib.sh index b8c72533c..3ce4df4dc 100644 --- a/t/ax/test-lib.sh +++ b/t/ax/test-lib.sh @@ -1,6 +1,6 @@ # -*- shell-script -*- # -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/ax/testsuite-summary-checks.sh b/t/ax/testsuite-summary-checks.sh index 962a73022..d94f20cc2 100644 --- a/t/ax/testsuite-summary-checks.sh +++ b/t/ax/testsuite-summary-checks.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ax/trivial-test-driver b/t/ax/trivial-test-driver index 53caa9f20..ded56f37e 100644 --- a/t/ax/trivial-test-driver +++ b/t/ax/trivial-test-driver @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/backcompat-acout.sh b/t/backcompat-acout.sh index a6d2d3486..e95e7b0f2 100644 --- a/t/backcompat-acout.sh +++ b/t/backcompat-acout.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/backcompat.sh b/t/backcompat.sh index 7ca7a5044..0f9256b45 100644 --- a/t/backcompat.sh +++ b/t/backcompat.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/backcompat2.sh b/t/backcompat2.sh index b62914063..8a9ea087e 100644 --- a/t/backcompat2.sh +++ b/t/backcompat2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/backcompat3.sh b/t/backcompat3.sh index f95ef7bc5..065aef723 100644 --- a/t/backcompat3.sh +++ b/t/backcompat3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/backcompat6.sh b/t/backcompat6.sh index d84ea97e1..36fe1c67a 100644 --- a/t/backcompat6.sh +++ b/t/backcompat6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/backslash-before-trailing-whitespace.sh b/t/backslash-before-trailing-whitespace.sh index f0d13643e..49afe3d43 100644 --- a/t/backslash-before-trailing-whitespace.sh +++ b/t/backslash-before-trailing-whitespace.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/backslash-issues.sh b/t/backslash-issues.sh index 9dae7155a..6ea5431a5 100644 --- a/t/backslash-issues.sh +++ b/t/backslash-issues.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/badline.sh b/t/badline.sh index 619e7a64b..da33c8795 100644 --- a/t/badline.sh +++ b/t/badline.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/badopt.sh b/t/badopt.sh index 6cd0eed5b..0d057670b 100644 --- a/t/badopt.sh +++ b/t/badopt.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/badprog.sh b/t/badprog.sh index da6318b02..4107f3c5c 100644 --- a/t/badprog.sh +++ b/t/badprog.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/built-sources-check.sh b/t/built-sources-check.sh index 9c81b0ebe..1e1edd4ac 100644 --- a/t/built-sources-check.sh +++ b/t/built-sources-check.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/built-sources-cond.sh b/t/built-sources-cond.sh index 3a0b6b81a..7cd14080c 100644 --- a/t/built-sources-cond.sh +++ b/t/built-sources-cond.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/built-sources-fork-bomb.sh b/t/built-sources-fork-bomb.sh index 4807d357d..1fb64c530 100644 --- a/t/built-sources-fork-bomb.sh +++ b/t/built-sources-fork-bomb.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/built-sources-install.sh b/t/built-sources-install.sh index 3c1a01d19..6aeb3026d 100644 --- a/t/built-sources-install.sh +++ b/t/built-sources-install.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/built-sources-subdir.sh b/t/built-sources-subdir.sh index 7a591c69c..c798d515f 100644 --- a/t/built-sources-subdir.sh +++ b/t/built-sources-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/built-sources.sh b/t/built-sources.sh index 162925c46..8bdcf477b 100644 --- a/t/built-sources.sh +++ b/t/built-sources.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/c-demo.sh b/t/c-demo.sh index a0012e2cc..d18950563 100644 --- a/t/c-demo.sh +++ b/t/c-demo.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/candist.sh b/t/candist.sh index 5092eca7c..f44f00d6b 100644 --- a/t/candist.sh +++ b/t/candist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/canon-name.sh b/t/canon-name.sh index e5d3c773d..21e4300b6 100644 --- a/t/canon-name.sh +++ b/t/canon-name.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/canon.sh b/t/canon.sh index d93d22c75..3f70697c1 100644 --- a/t/canon.sh +++ b/t/canon.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/canon2.sh b/t/canon2.sh index 8e47b620e..3cb277250 100644 --- a/t/canon2.sh +++ b/t/canon2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/canon3.sh b/t/canon3.sh index 895cf1c7e..96b295b8e 100644 --- a/t/canon3.sh +++ b/t/canon3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/canon4.sh b/t/canon4.sh index e4eb10ab5..12f33a30d 100644 --- a/t/canon4.sh +++ b/t/canon4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/canon5.sh b/t/canon5.sh index c43d3d329..48accc5fe 100644 --- a/t/canon5.sh +++ b/t/canon5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/canon6.sh b/t/canon6.sh index 784158aae..79320610a 100644 --- a/t/canon6.sh +++ b/t/canon6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/canon7.sh b/t/canon7.sh index ad249b217..8af3cc649 100644 --- a/t/canon7.sh +++ b/t/canon7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/canon8.sh b/t/canon8.sh index 85b729a2b..2e6447a05 100644 --- a/t/canon8.sh +++ b/t/canon8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/ccnoco-deps.sh b/t/ccnoco-deps.sh index 5d9e9b876..7b9dc7bdf 100755 --- a/t/ccnoco-deps.sh +++ b/t/ccnoco-deps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/ccnoco-lib.sh b/t/ccnoco-lib.sh index a6464ec98..1c130f1d9 100755 --- a/t/ccnoco-lib.sh +++ b/t/ccnoco-lib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/ccnoco-lt.sh b/t/ccnoco-lt.sh index 793987bf0..da8f8c130 100755 --- a/t/ccnoco-lt.sh +++ b/t/ccnoco-lt.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/ccnoco.sh b/t/ccnoco.sh index d00b6f93d..a4a104676 100644 --- a/t/ccnoco.sh +++ b/t/ccnoco.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/ccnoco3.sh b/t/ccnoco3.sh index 36bff7628..779569393 100644 --- a/t/ccnoco3.sh +++ b/t/ccnoco3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/ccnoco4.sh b/t/ccnoco4.sh index beb02daae..4afb31dd0 100644 --- a/t/ccnoco4.sh +++ b/t/ccnoco4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/check-concurrency-bug9245.sh b/t/check-concurrency-bug9245.sh index abe01d3bb..f54936463 100644 --- a/t/check-concurrency-bug9245.sh +++ b/t/check-concurrency-bug9245.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/check-exported-srcdir.sh b/t/check-exported-srcdir.sh index 3f7178ea4..963433786 100644 --- a/t/check-exported-srcdir.sh +++ b/t/check-exported-srcdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/check-fd-redirect.sh b/t/check-fd-redirect.sh index 80f786776..312931c5b 100644 --- a/t/check-fd-redirect.sh +++ b/t/check-fd-redirect.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/check-no-test-driver.sh b/t/check-no-test-driver.sh index 976d19eb2..261337af8 100644 --- a/t/check-no-test-driver.sh +++ b/t/check-no-test-driver.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/check-subst-prog.sh b/t/check-subst-prog.sh index 55461411a..f11382580 100644 --- a/t/check-subst-prog.sh +++ b/t/check-subst-prog.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/check-subst.sh b/t/check-subst.sh index 7b23082be..74ba9b788 100644 --- a/t/check-subst.sh +++ b/t/check-subst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/check-tests-in-builddir.sh b/t/check-tests-in-builddir.sh index 2d71f700b..70f6d7d84 100644 --- a/t/check-tests-in-builddir.sh +++ b/t/check-tests-in-builddir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/check.sh b/t/check.sh index 83e6c2c4b..c3119b128 100644 --- a/t/check.sh +++ b/t/check.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/check10.sh b/t/check10.sh index 75de991ae..ecf2ac453 100644 --- a/t/check10.sh +++ b/t/check10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/check11.sh b/t/check11.sh index 6be5aad1c..8206aff69 100644 --- a/t/check11.sh +++ b/t/check11.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/check12.sh b/t/check12.sh index 8ee308cd1..c6278ce3f 100644 --- a/t/check12.sh +++ b/t/check12.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/check2.sh b/t/check2.sh index 835fff62f..1ee31fb32 100644 --- a/t/check2.sh +++ b/t/check2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/check4.sh b/t/check4.sh index 42a7b0c48..c4970bdad 100644 --- a/t/check4.sh +++ b/t/check4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/check5.sh b/t/check5.sh index 5351ff8ee..d42e9a5bb 100644 --- a/t/check5.sh +++ b/t/check5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/check6.sh b/t/check6.sh index 283159ac2..7e3f64b11 100644 --- a/t/check6.sh +++ b/t/check6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/check7.sh b/t/check7.sh index 5d3cd5847..dad0e9f0e 100644 --- a/t/check7.sh +++ b/t/check7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/check8.sh b/t/check8.sh index 41fe30796..644cf7f50 100644 --- a/t/check8.sh +++ b/t/check8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/checkall.sh b/t/checkall.sh index daccc7a83..6c06ffc77 100644 --- a/t/checkall.sh +++ b/t/checkall.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/clean.sh b/t/clean.sh index b3f6f60e2..81092f4a8 100644 --- a/t/clean.sh +++ b/t/clean.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/colneq.sh b/t/colneq.sh index 8234ac032..a0e3eae94 100644 --- a/t/colneq.sh +++ b/t/colneq.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/colneq2.sh b/t/colneq2.sh index 7daa116ae..377b02db5 100644 --- a/t/colneq2.sh +++ b/t/colneq2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/colneq3.sh b/t/colneq3.sh index f538d45ca..054f9a9a9 100644 --- a/t/colneq3.sh +++ b/t/colneq3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/colon.sh b/t/colon.sh index 6bd04b088..620d08e55 100644 --- a/t/colon.sh +++ b/t/colon.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/colon2.sh b/t/colon2.sh index 9eeaf3648..9a91c023b 100644 --- a/t/colon2.sh +++ b/t/colon2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/colon3.sh b/t/colon3.sh index db1e4bb98..1b6f8e67a 100644 --- a/t/colon3.sh +++ b/t/colon3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/colon4.sh b/t/colon4.sh index 8d057b62e..532dac9a6 100644 --- a/t/colon4.sh +++ b/t/colon4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/colon5.sh b/t/colon5.sh index 3383767fe..1af49bb37 100644 --- a/t/colon5.sh +++ b/t/colon5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/colon6.sh b/t/colon6.sh index fe3458414..a6bab58e2 100644 --- a/t/colon6.sh +++ b/t/colon6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/colon7.sh b/t/colon7.sh index bfa466cbe..a3a66b443 100644 --- a/t/colon7.sh +++ b/t/colon7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/color-tests-opt.sh b/t/color-tests-opt.sh index e7aa17ad6..aed90941e 100644 --- a/t/color-tests-opt.sh +++ b/t/color-tests-opt.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/color-tests.sh b/t/color-tests.sh index 3ddef994a..68f963fcb 100644 --- a/t/color-tests.sh +++ b/t/color-tests.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/color-tests2.sh b/t/color-tests2.sh index 6dcd2076d..18fd277e4 100644 --- a/t/color-tests2.sh +++ b/t/color-tests2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/commen10.sh b/t/commen10.sh index d9bd1ddc0..d863b58ba 100644 --- a/t/commen10.sh +++ b/t/commen10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/commen11.sh b/t/commen11.sh index 15601cc92..9671287cf 100644 --- a/t/commen11.sh +++ b/t/commen11.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/comment-block.sh b/t/comment-block.sh index af1136d42..4989fa6be 100644 --- a/t/comment-block.sh +++ b/t/comment-block.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/comment.sh b/t/comment.sh index a1466e5bd..9d50f31f5 100644 --- a/t/comment.sh +++ b/t/comment.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/comment2.sh b/t/comment2.sh index b5e1b71dc..7a891e162 100644 --- a/t/comment2.sh +++ b/t/comment2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/comment3.sh b/t/comment3.sh index d1d792435..eeabe7e41 100644 --- a/t/comment3.sh +++ b/t/comment3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/comment4.sh b/t/comment4.sh index 0d9d0c1f1..c37c7a86f 100644 --- a/t/comment4.sh +++ b/t/comment4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/comment5.sh b/t/comment5.sh index 4f3acc5df..b95e14c15 100644 --- a/t/comment5.sh +++ b/t/comment5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/comment6.sh b/t/comment6.sh index 03881585f..660d38b68 100644 --- a/t/comment6.sh +++ b/t/comment6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/comment7.sh b/t/comment7.sh index 60db30372..d6b8839d4 100644 --- a/t/comment7.sh +++ b/t/comment7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/comment8.sh b/t/comment8.sh index f8ff081e7..541c145f0 100644 --- a/t/comment8.sh +++ b/t/comment8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/comment9.sh b/t/comment9.sh index 4494490e8..bf1358e2a 100644 --- a/t/comment9.sh +++ b/t/comment9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/comments-in-var-def.sh b/t/comments-in-var-def.sh index cdcb550b8..2138c8b43 100644 --- a/t/comments-in-var-def.sh +++ b/t/comments-in-var-def.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/compile.sh b/t/compile.sh index 5cad98932..366a8e5c2 100644 --- a/t/compile.sh +++ b/t/compile.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/compile2.sh b/t/compile2.sh index a1b173df8..4d1852608 100644 --- a/t/compile2.sh +++ b/t/compile2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/compile3.sh b/t/compile3.sh index bf281a093..af690791c 100644 --- a/t/compile3.sh +++ b/t/compile3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/compile4.sh b/t/compile4.sh index ddabe3143..913d03ebd 100644 --- a/t/compile4.sh +++ b/t/compile4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/compile5.sh b/t/compile5.sh index 42510a641..d4878d6d2 100644 --- a/t/compile5.sh +++ b/t/compile5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/compile6.sh b/t/compile6.sh index 3b6455c3d..8b6d3f33e 100644 --- a/t/compile6.sh +++ b/t/compile6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/compile_f90_c_cxx.sh b/t/compile_f90_c_cxx.sh index b833835b4..802917813 100644 --- a/t/compile_f90_c_cxx.sh +++ b/t/compile_f90_c_cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/compile_f_c_cxx.sh b/t/compile_f_c_cxx.sh index a0b0e216f..0687537d5 100644 --- a/t/compile_f_c_cxx.sh +++ b/t/compile_f_c_cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/cond-basic.sh b/t/cond-basic.sh index 4b334a140..f093b8b1b 100644 --- a/t/cond-basic.sh +++ b/t/cond-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond.sh b/t/cond.sh index 5d690c202..9a062c563 100644 --- a/t/cond.sh +++ b/t/cond.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/cond10.sh b/t/cond10.sh index 896ef61e4..6b7307619 100644 --- a/t/cond10.sh +++ b/t/cond10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond11.sh b/t/cond11.sh index 7d729d8f1..2fce71e1b 100644 --- a/t/cond11.sh +++ b/t/cond11.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond13.sh b/t/cond13.sh index fbffd7531..f13db08c9 100644 --- a/t/cond13.sh +++ b/t/cond13.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond14.sh b/t/cond14.sh index 67790e2db..d0b4f6674 100644 --- a/t/cond14.sh +++ b/t/cond14.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond15.sh b/t/cond15.sh index 8f2f894d8..067b1bba0 100644 --- a/t/cond15.sh +++ b/t/cond15.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond16.sh b/t/cond16.sh index 80b0a6315..130b692ab 100644 --- a/t/cond16.sh +++ b/t/cond16.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond17.sh b/t/cond17.sh index 316b39ea0..046747330 100644 --- a/t/cond17.sh +++ b/t/cond17.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond18.sh b/t/cond18.sh index 1d485891f..8055b4242 100644 --- a/t/cond18.sh +++ b/t/cond18.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond19.sh b/t/cond19.sh index a2556f32f..0b6cb7830 100644 --- a/t/cond19.sh +++ b/t/cond19.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond20.sh b/t/cond20.sh index c496a2390..63e04ebcb 100644 --- a/t/cond20.sh +++ b/t/cond20.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cond21.sh b/t/cond21.sh index 4993a5c8c..59166d59f 100644 --- a/t/cond21.sh +++ b/t/cond21.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond22.sh b/t/cond22.sh index d506f95f9..a6c2c033b 100644 --- a/t/cond22.sh +++ b/t/cond22.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond23.sh b/t/cond23.sh index 2a7758e7a..6b63cb57b 100644 --- a/t/cond23.sh +++ b/t/cond23.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond24.sh b/t/cond24.sh index 54a379b93..6d8bcfe88 100644 --- a/t/cond24.sh +++ b/t/cond24.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond25.sh b/t/cond25.sh index 7ddf20d15..0bab3c6f7 100644 --- a/t/cond25.sh +++ b/t/cond25.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond26.sh b/t/cond26.sh index cfa304cde..b05b131c5 100644 --- a/t/cond26.sh +++ b/t/cond26.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond27.sh b/t/cond27.sh index 95ae25d2b..0e633a5f5 100644 --- a/t/cond27.sh +++ b/t/cond27.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond28.sh b/t/cond28.sh index 7e76472d2..9a015b528 100644 --- a/t/cond28.sh +++ b/t/cond28.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond3.sh b/t/cond3.sh index 5bf7bf714..9eacbf00c 100644 --- a/t/cond3.sh +++ b/t/cond3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/cond30.sh b/t/cond30.sh index b6c3fc3fc..cd8b05701 100644 --- a/t/cond30.sh +++ b/t/cond30.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/cond31.sh b/t/cond31.sh index 06215b037..c35bd988c 100644 --- a/t/cond31.sh +++ b/t/cond31.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/cond32.sh b/t/cond32.sh index f3cfc4e01..f3e6c2d92 100644 --- a/t/cond32.sh +++ b/t/cond32.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/cond33.sh b/t/cond33.sh index 80ff1c785..6c84fcf72 100644 --- a/t/cond33.sh +++ b/t/cond33.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/cond34.sh b/t/cond34.sh index 995aab9a8..5e65dddf5 100644 --- a/t/cond34.sh +++ b/t/cond34.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/cond35.sh b/t/cond35.sh index d12f75f62..62500bc97 100644 --- a/t/cond35.sh +++ b/t/cond35.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/cond36.sh b/t/cond36.sh index 896dbfa99..49359d822 100644 --- a/t/cond36.sh +++ b/t/cond36.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/cond37.sh b/t/cond37.sh index 429593749..bd97699bb 100644 --- a/t/cond37.sh +++ b/t/cond37.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/cond38.sh b/t/cond38.sh index 62327b236..1783b5a40 100644 --- a/t/cond38.sh +++ b/t/cond38.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/cond39.sh b/t/cond39.sh index 819b01444..f3273ee97 100644 --- a/t/cond39.sh +++ b/t/cond39.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/cond4.sh b/t/cond4.sh index 562a88e09..28c90366d 100644 --- a/t/cond4.sh +++ b/t/cond4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/cond40.sh b/t/cond40.sh index f11f29e67..06c77535c 100644 --- a/t/cond40.sh +++ b/t/cond40.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/cond41.sh b/t/cond41.sh index 87d4421fb..40aae0190 100644 --- a/t/cond41.sh +++ b/t/cond41.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/cond42.sh b/t/cond42.sh index 9f788c9e3..8e278aad9 100644 --- a/t/cond42.sh +++ b/t/cond42.sh @@ -1,6 +1,6 @@ #!/bin/sh nfig -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/cond43.sh b/t/cond43.sh index dd48f6949..e83f03997 100644 --- a/t/cond43.sh +++ b/t/cond43.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/cond44.sh b/t/cond44.sh index 323622e64..925b4b661 100644 --- a/t/cond44.sh +++ b/t/cond44.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond45.sh b/t/cond45.sh index 81fc8f2d7..238441519 100644 --- a/t/cond45.sh +++ b/t/cond45.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cond46.sh b/t/cond46.sh index c50fec95b..b563ab9ba 100644 --- a/t/cond46.sh +++ b/t/cond46.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/cond5.sh b/t/cond5.sh index ee9d132ca..a953b82ed 100644 --- a/t/cond5.sh +++ b/t/cond5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/cond6.sh b/t/cond6.sh index 17e5a29e4..94cbd2883 100644 --- a/t/cond6.sh +++ b/t/cond6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/cond7.sh b/t/cond7.sh index c4230a030..e019c6418 100644 --- a/t/cond7.sh +++ b/t/cond7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/cond8.sh b/t/cond8.sh index 983e77918..749c8454d 100644 --- a/t/cond8.sh +++ b/t/cond8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/cond9.sh b/t/cond9.sh index 4fcb3e47a..5ded316f2 100644 --- a/t/cond9.sh +++ b/t/cond9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/condd.sh b/t/condd.sh index 507b21f26..dd71e9248 100644 --- a/t/condd.sh +++ b/t/condd.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/condhook.sh b/t/condhook.sh index 269b67a2c..52a300552 100644 --- a/t/condhook.sh +++ b/t/condhook.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/condhook2.sh b/t/condhook2.sh index 4c24599d7..c574ff18f 100644 --- a/t/condhook2.sh +++ b/t/condhook2.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/condinc.sh b/t/condinc.sh index 515bfc7f5..fcc5cd970 100644 --- a/t/condinc.sh +++ b/t/condinc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/condinc2.sh b/t/condinc2.sh index b196b41ec..e07f86d56 100644 --- a/t/condinc2.sh +++ b/t/condinc2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/condlib.sh b/t/condlib.sh index e01a60a41..0df32a946 100644 --- a/t/condlib.sh +++ b/t/condlib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/condman2.sh b/t/condman2.sh index 45822b8f8..db5d50c11 100644 --- a/t/condman2.sh +++ b/t/condman2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/condman3.sh b/t/condman3.sh index e23e6501d..a27188fc9 100644 --- a/t/condman3.sh +++ b/t/condman3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/confdeps.sh b/t/confdeps.sh index a7865ad4a..6e29bfcde 100644 --- a/t/confdeps.sh +++ b/t/confdeps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/conff.sh b/t/conff.sh index bebed7780..8826d700a 100644 --- a/t/conff.sh +++ b/t/conff.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/conff2.sh b/t/conff2.sh index 58641760b..90b9423e8 100644 --- a/t/conff2.sh +++ b/t/conff2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/conffile-leading-dot.sh b/t/conffile-leading-dot.sh index aebeea538..c9e12358d 100644 --- a/t/conffile-leading-dot.sh +++ b/t/conffile-leading-dot.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/confh-subdir-clean.sh b/t/confh-subdir-clean.sh index beb6cec80..6dfe5e731 100644 --- a/t/confh-subdir-clean.sh +++ b/t/confh-subdir-clean.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/confh.sh b/t/confh.sh index c5968f883..5caae5a7e 100644 --- a/t/confh.sh +++ b/t/confh.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/confh4.sh b/t/confh4.sh index a053915ec..cea1e8dd7 100644 --- a/t/confh4.sh +++ b/t/confh4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/confh5.sh b/t/confh5.sh index dd3ce4ba4..55ff5ba86 100644 --- a/t/confh5.sh +++ b/t/confh5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/confh6.sh b/t/confh6.sh index 024dd9b38..dd60867e9 100644 --- a/t/confh6.sh +++ b/t/confh6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/confh7.sh b/t/confh7.sh index 63c987276..604d6dc59 100644 --- a/t/confh7.sh +++ b/t/confh7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/confh8.sh b/t/confh8.sh index b504d2250..45b1eb498 100644 --- a/t/confh8.sh +++ b/t/confh8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/configure.sh b/t/configure.sh index 7de9e760b..4872afe9b 100644 --- a/t/configure.sh +++ b/t/configure.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/confincl.sh b/t/confincl.sh index 216a7b554..30afb983b 100644 --- a/t/confincl.sh +++ b/t/confincl.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/conflnk.sh b/t/conflnk.sh index 1d532fc97..216c4f19b 100644 --- a/t/conflnk.sh +++ b/t/conflnk.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/conflnk2.sh b/t/conflnk2.sh index b582eb33a..0e649524f 100644 --- a/t/conflnk2.sh +++ b/t/conflnk2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/conflnk3.sh b/t/conflnk3.sh index ef0cabe39..7f22ad616 100644 --- a/t/conflnk3.sh +++ b/t/conflnk3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/conflnk4.sh b/t/conflnk4.sh index 1c5a90c05..18ead7c8f 100644 --- a/t/conflnk4.sh +++ b/t/conflnk4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/confsub.sh b/t/confsub.sh index c2fdb2d1f..04554d9c3 100644 --- a/t/confsub.sh +++ b/t/confsub.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/confvar.sh b/t/confvar.sh index d269b85c7..f46f65c4e 100644 --- a/t/confvar.sh +++ b/t/confvar.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/confvar2.sh b/t/confvar2.sh index 6bba225f3..4723732b9 100644 --- a/t/confvar2.sh +++ b/t/confvar2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/copy.sh b/t/copy.sh index 153419b34..e2ba3e4c0 100644 --- a/t/copy.sh +++ b/t/copy.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/cscope.tap b/t/cscope.tap index c39a9b6dd..3110a3bc4 100644 --- a/t/cscope.tap +++ b/t/cscope.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/cscope2.sh b/t/cscope2.sh index 44fe99527..c86e98cbc 100644 --- a/t/cscope2.sh +++ b/t/cscope2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/cscope3.sh b/t/cscope3.sh index 7fa707b5c..5e02a51fe 100644 --- a/t/cscope3.sh +++ b/t/cscope3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/cxx-demo.sh b/t/cxx-demo.sh index 97a46ce00..0e95e2fbc 100644 --- a/t/cxx-demo.sh +++ b/t/cxx-demo.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/cxx-lt-demo.sh b/t/cxx-lt-demo.sh index faf18bdd8..e77cceb46 100644 --- a/t/cxx-lt-demo.sh +++ b/t/cxx-lt-demo.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/cxx.sh b/t/cxx.sh index ceff041f4..6abbd49a6 100644 --- a/t/cxx.sh +++ b/t/cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/cxx2.sh b/t/cxx2.sh index e585dc1b7..b563c25ff 100644 --- a/t/cxx2.sh +++ b/t/cxx2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/cxxcpp.sh b/t/cxxcpp.sh index 3c5e4468a..95723134a 100644 --- a/t/cxxcpp.sh +++ b/t/cxxcpp.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/cxxlibobj.sh b/t/cxxlibobj.sh index ba071302c..d6b9235a9 100644 --- a/t/cxxlibobj.sh +++ b/t/cxxlibobj.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/cxxlink.sh b/t/cxxlink.sh index 3d12cb4cd..d69875fc3 100644 --- a/t/cxxlink.sh +++ b/t/cxxlink.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/cxxnoc.sh b/t/cxxnoc.sh index 63e37c281..ef09ecd3c 100644 --- a/t/cxxnoc.sh +++ b/t/cxxnoc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/cygnus-no-more.sh b/t/cygnus-no-more.sh index db07929c8..7175592a7 100644 --- a/t/cygnus-no-more.sh +++ b/t/cygnus-no-more.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/cygwin32.sh b/t/cygwin32.sh index 66cafdf9a..6b88415ad 100644 --- a/t/cygwin32.sh +++ b/t/cygwin32.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/dash.sh b/t/dash.sh index 4d4271283..5b1618a97 100644 --- a/t/dash.sh +++ b/t/dash.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/defun.sh b/t/defun.sh index c9455e3e7..4305707e4 100644 --- a/t/defun.sh +++ b/t/defun.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/defun2.sh b/t/defun2.sh index f5e448b60..433330885 100644 --- a/t/defun2.sh +++ b/t/defun2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/dejagnu-absolute-builddir.sh b/t/dejagnu-absolute-builddir.sh index 495721b60..c6ac7ae37 100644 --- a/t/dejagnu-absolute-builddir.sh +++ b/t/dejagnu-absolute-builddir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dejagnu-relative-srcdir.sh b/t/dejagnu-relative-srcdir.sh index 6168421ce..79a37dd3d 100644 --- a/t/dejagnu-relative-srcdir.sh +++ b/t/dejagnu-relative-srcdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dejagnu-siteexp-append.sh b/t/dejagnu-siteexp-append.sh index cb5b499a3..bbdb76a7a 100644 --- a/t/dejagnu-siteexp-append.sh +++ b/t/dejagnu-siteexp-append.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dejagnu-siteexp-extend.sh b/t/dejagnu-siteexp-extend.sh index 5b3257512..5e6a2dd6e 100644 --- a/t/dejagnu-siteexp-extend.sh +++ b/t/dejagnu-siteexp-extend.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dejagnu-siteexp-useredit.sh b/t/dejagnu-siteexp-useredit.sh index 419acdf58..0d2b387f8 100644 --- a/t/dejagnu-siteexp-useredit.sh +++ b/t/dejagnu-siteexp-useredit.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dejagnu.sh b/t/dejagnu.sh index 23c659692..a728690b5 100644 --- a/t/dejagnu.sh +++ b/t/dejagnu.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/dejagnu2.sh b/t/dejagnu2.sh index 45b19b7ae..671fc4bbd 100644 --- a/t/dejagnu2.sh +++ b/t/dejagnu2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/dejagnu3.sh b/t/dejagnu3.sh index 576edc790..ef2f426b5 100644 --- a/t/dejagnu3.sh +++ b/t/dejagnu3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/dejagnu4.sh b/t/dejagnu4.sh index 00cbe0e6a..e6eee7da0 100644 --- a/t/dejagnu4.sh +++ b/t/dejagnu4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/dejagnu5.sh b/t/dejagnu5.sh index c665fde33..a5dc9e0ef 100644 --- a/t/dejagnu5.sh +++ b/t/dejagnu5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/dejagnu6.sh b/t/dejagnu6.sh index e9c31313e..5807c9884 100644 --- a/t/dejagnu6.sh +++ b/t/dejagnu6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/dejagnu7.sh b/t/dejagnu7.sh index 9594e0b20..de31c8ada 100644 --- a/t/dejagnu7.sh +++ b/t/dejagnu7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/deleted-am.sh b/t/deleted-am.sh index 837e10f23..bf8c91718 100644 --- a/t/deleted-am.sh +++ b/t/deleted-am.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/deleted-m4.sh b/t/deleted-m4.sh index 1f4f7a96b..c784eb02c 100644 --- a/t/deleted-m4.sh +++ b/t/deleted-m4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/depacl2.sh b/t/depacl2.sh index 4d7912a86..9147cf817 100644 --- a/t/depacl2.sh +++ b/t/depacl2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/depcomp-implicit-auxdir.sh b/t/depcomp-implicit-auxdir.sh index 9ec207893..e5b31896f 100644 --- a/t/depcomp-implicit-auxdir.sh +++ b/t/depcomp-implicit-auxdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/depcomp.sh b/t/depcomp.sh index b5c4d4f2f..1dd0b98ef 100644 --- a/t/depcomp.sh +++ b/t/depcomp.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/depcomp2.sh b/t/depcomp2.sh index 3baaebfdd..476b557d5 100644 --- a/t/depcomp2.sh +++ b/t/depcomp2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/depcomp8a.sh b/t/depcomp8a.sh index d6c73edb7..94b7afa63 100644 --- a/t/depcomp8a.sh +++ b/t/depcomp8a.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/depcomp8b.sh b/t/depcomp8b.sh index 879ee1c0d..47bf5c5f0 100644 --- a/t/depcomp8b.sh +++ b/t/depcomp8b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/depdist.sh b/t/depdist.sh index 770286874..217dc7736 100644 --- a/t/depdist.sh +++ b/t/depdist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/depend.sh b/t/depend.sh index 5de39a7e3..9ea801100 100644 --- a/t/depend.sh +++ b/t/depend.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/depend3.sh b/t/depend3.sh index d757caca7..2ff6aa1c8 100644 --- a/t/depend3.sh +++ b/t/depend3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/depend4.sh b/t/depend4.sh index 34c61ccd2..3f07d5b97 100644 --- a/t/depend4.sh +++ b/t/depend4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/depend5.sh b/t/depend5.sh index d1650bcbc..fcf34d153 100644 --- a/t/depend5.sh +++ b/t/depend5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/depend6.sh b/t/depend6.sh index 17defb47c..001ee96c5 100644 --- a/t/depend6.sh +++ b/t/depend6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/deprecated-acinit.sh b/t/deprecated-acinit.sh index 223984bad..ac49f5d24 100644 --- a/t/deprecated-acinit.sh +++ b/t/deprecated-acinit.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/destdir.sh b/t/destdir.sh index 3a5d0c85d..1ea98e9f8 100644 --- a/t/destdir.sh +++ b/t/destdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/dir-named-obj-is-bad.sh b/t/dir-named-obj-is-bad.sh index 49ae4ac4b..ee7d160de 100644 --- a/t/dir-named-obj-is-bad.sh +++ b/t/dir-named-obj-is-bad.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/discover.sh b/t/discover.sh index 5d564b5d9..8bf484f1b 100644 --- a/t/discover.sh +++ b/t/discover.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/dist-auxdir-many-subdirs.sh b/t/dist-auxdir-many-subdirs.sh index ec1a9641f..0868978d2 100644 --- a/t/dist-auxdir-many-subdirs.sh +++ b/t/dist-auxdir-many-subdirs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dist-auxfile-2.sh b/t/dist-auxfile-2.sh index 567866b5a..d1644205d 100644 --- a/t/dist-auxfile-2.sh +++ b/t/dist-auxfile-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dist-auxfile.sh b/t/dist-auxfile.sh index 65abf18e1..720c596f3 100644 --- a/t/dist-auxfile.sh +++ b/t/dist-auxfile.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dist-formats.tap b/t/dist-formats.tap index 3c9e6210f..49a157900 100644 --- a/t/dist-formats.tap +++ b/t/dist-formats.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/dist-included-parent-dir.sh b/t/dist-included-parent-dir.sh index bd411cb91..a97b2480b 100644 --- a/t/dist-included-parent-dir.sh +++ b/t/dist-included-parent-dir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/dist-install-sh.sh b/t/dist-install-sh.sh index de453f289..afbb904bc 100644 --- a/t/dist-install-sh.sh +++ b/t/dist-install-sh.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/dist-lzma.sh b/t/dist-lzma.sh index d1d3e4b67..f8c439593 100644 --- a/t/dist-lzma.sh +++ b/t/dist-lzma.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/dist-missing-am.sh b/t/dist-missing-am.sh index dd074bdd7..50b2cb1c6 100644 --- a/t/dist-missing-am.sh +++ b/t/dist-missing-am.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dist-missing-included-m4.sh b/t/dist-missing-included-m4.sh index e14a38ed8..8d21a61b1 100644 --- a/t/dist-missing-included-m4.sh +++ b/t/dist-missing-included-m4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dist-missing-m4.sh b/t/dist-missing-m4.sh index a2a8723df..3f390072e 100644 --- a/t/dist-missing-m4.sh +++ b/t/dist-missing-m4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dist-pr109765.sh b/t/dist-pr109765.sh index 2051f5f4e..8915aa953 100644 --- a/t/dist-pr109765.sh +++ b/t/dist-pr109765.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/dist-readonly.sh b/t/dist-readonly.sh index f68bcf89a..4463db5cc 100644 --- a/t/dist-readonly.sh +++ b/t/dist-readonly.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dist-repeated.sh b/t/dist-repeated.sh index 3b43c722e..08a4dced7 100644 --- a/t/dist-repeated.sh +++ b/t/dist-repeated.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dist-shar.sh b/t/dist-shar.sh index 2265fd996..f24b75336 100644 --- a/t/dist-shar.sh +++ b/t/dist-shar.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/dist-tarZ.sh b/t/dist-tarZ.sh index f27648166..b411d0937 100644 --- a/t/dist-tarZ.sh +++ b/t/dist-tarZ.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/dist-with-unreadable-makefile-fails.sh b/t/dist-with-unreadable-makefile-fails.sh index 67dd3d4d6..920c996e1 100644 --- a/t/dist-with-unreadable-makefile-fails.sh +++ b/t/dist-with-unreadable-makefile-fails.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/distcheck-configure-flags-am.sh b/t/distcheck-configure-flags-am.sh index 0d9a8d5e2..509294038 100644 --- a/t/distcheck-configure-flags-am.sh +++ b/t/distcheck-configure-flags-am.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-configure-flags-subpkg.sh b/t/distcheck-configure-flags-subpkg.sh index 469390774..ef875b054 100644 --- a/t/distcheck-configure-flags-subpkg.sh +++ b/t/distcheck-configure-flags-subpkg.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-configure-flags.sh b/t/distcheck-configure-flags.sh index 15adf4700..3a1926667 100644 --- a/t/distcheck-configure-flags.sh +++ b/t/distcheck-configure-flags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-hook.sh b/t/distcheck-hook.sh index 6d9307c9c..36afc102d 100644 --- a/t/distcheck-hook.sh +++ b/t/distcheck-hook.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-hook2.sh b/t/distcheck-hook2.sh index e430a5399..ba1be692f 100644 --- a/t/distcheck-hook2.sh +++ b/t/distcheck-hook2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-missing-m4.sh b/t/distcheck-missing-m4.sh index ee492fdcc..ff3e2910e 100644 --- a/t/distcheck-missing-m4.sh +++ b/t/distcheck-missing-m4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-no-prefix-or-srcdir-override.sh b/t/distcheck-no-prefix-or-srcdir-override.sh index 9b9a56fb8..ce603f923 100644 --- a/t/distcheck-no-prefix-or-srcdir-override.sh +++ b/t/distcheck-no-prefix-or-srcdir-override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/distcheck-outdated-m4.sh b/t/distcheck-outdated-m4.sh index 84a08f464..c02eb4476 100644 --- a/t/distcheck-outdated-m4.sh +++ b/t/distcheck-outdated-m4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-override-infodir.sh b/t/distcheck-override-infodir.sh index 6127f2bc1..466e954ed 100644 --- a/t/distcheck-override-infodir.sh +++ b/t/distcheck-override-infodir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-pr10470.sh b/t/distcheck-pr10470.sh index a2781dfa2..ebc2a880a 100644 --- a/t/distcheck-pr10470.sh +++ b/t/distcheck-pr10470.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/distcheck-pr9579.sh b/t/distcheck-pr9579.sh index b822e5c6d..09b807dae 100644 --- a/t/distcheck-pr9579.sh +++ b/t/distcheck-pr9579.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/distcheck-writable-srcdir.sh b/t/distcheck-writable-srcdir.sh index 2c570ecc2..97b071893 100644 --- a/t/distcheck-writable-srcdir.sh +++ b/t/distcheck-writable-srcdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/distcleancheck.sh b/t/distcleancheck.sh index b91d8359b..e65f46512 100644 --- a/t/distcleancheck.sh +++ b/t/distcleancheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/distcom-subdir.sh b/t/distcom-subdir.sh index b3651f1cd..257561ed8 100644 --- a/t/distcom-subdir.sh +++ b/t/distcom-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/distcom2.sh b/t/distcom2.sh index 1f39b6679..c13a6d711 100644 --- a/t/distcom2.sh +++ b/t/distcom2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/distcom3.sh b/t/distcom3.sh index d5dc295c5..78379594d 100644 --- a/t/distcom3.sh +++ b/t/distcom3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/distcom4.sh b/t/distcom4.sh index 3febb61e8..5feae9b96 100644 --- a/t/distcom4.sh +++ b/t/distcom4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/distcom5.sh b/t/distcom5.sh index 72f51869f..2bb1b3435 100644 --- a/t/distcom5.sh +++ b/t/distcom5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/distdir.sh b/t/distdir.sh index 4d1410d6d..827ebdf6d 100644 --- a/t/distdir.sh +++ b/t/distdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/disthook.sh b/t/disthook.sh index f1ff37123..b8ff8b590 100644 --- a/t/disthook.sh +++ b/t/disthook.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/distlinks.sh b/t/distlinks.sh index 48387bbaf..96edc7a4e 100644 --- a/t/distlinks.sh +++ b/t/distlinks.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/distlinksbrk.sh b/t/distlinksbrk.sh index d2b3d0fb6..4c48463e6 100644 --- a/t/distlinksbrk.sh +++ b/t/distlinksbrk.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/distname.sh b/t/distname.sh index d4d04bda2..7be808d49 100644 --- a/t/distname.sh +++ b/t/distname.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/dmalloc.sh b/t/dmalloc.sh index bd9093f67..440182db0 100644 --- a/t/dmalloc.sh +++ b/t/dmalloc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/doc-parsing-buglets-colneq-subst.sh b/t/doc-parsing-buglets-colneq-subst.sh index f4a79f032..be9f20088 100644 --- a/t/doc-parsing-buglets-colneq-subst.sh +++ b/t/doc-parsing-buglets-colneq-subst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/doc-parsing-buglets-tabs.sh b/t/doc-parsing-buglets-tabs.sh index 33e1746e7..f82f19a39 100644 --- a/t/doc-parsing-buglets-tabs.sh +++ b/t/doc-parsing-buglets-tabs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/dollar.sh b/t/dollar.sh index 52bf493f3..153e77038 100644 --- a/t/dollar.sh +++ b/t/dollar.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/dollarvar.sh b/t/dollarvar.sh index bf4f84214..d43b89828 100644 --- a/t/dollarvar.sh +++ b/t/dollarvar.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/dollarvar2.sh b/t/dollarvar2.sh index ef2dd06af..ed67d8b5e 100644 --- a/t/dollarvar2.sh +++ b/t/dollarvar2.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/double.sh b/t/double.sh index 62ddca44e..c93b7b453 100644 --- a/t/double.sh +++ b/t/double.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/dup2.sh b/t/dup2.sh index e5592081c..9716d485d 100644 --- a/t/dup2.sh +++ b/t/dup2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/else.sh b/t/else.sh index c9fdaf13e..42691ebaa 100644 --- a/t/else.sh +++ b/t/else.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/empty-data-primary.sh b/t/empty-data-primary.sh index 516fe9897..b1090bc0c 100644 --- a/t/empty-data-primary.sh +++ b/t/empty-data-primary.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/empty-sources-primary.tap b/t/empty-sources-primary.tap index dbf557c38..1b3e3e397 100644 --- a/t/empty-sources-primary.tap +++ b/t/empty-sources-primary.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/exdir.sh b/t/exdir.sh index 75c504a3c..bfc3934db 100644 --- a/t/exdir.sh +++ b/t/exdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/exdir2.sh b/t/exdir2.sh index e790ab5c3..62da251f6 100644 --- a/t/exdir2.sh +++ b/t/exdir2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/exdir3.sh b/t/exdir3.sh index 723c0efd8..72e1659ab 100644 --- a/t/exdir3.sh +++ b/t/exdir3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/exeext.sh b/t/exeext.sh index 414108d24..039baee92 100644 --- a/t/exeext.sh +++ b/t/exeext.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/exeext2.sh b/t/exeext2.sh index a282d823c..d500b0f2e 100644 --- a/t/exeext2.sh +++ b/t/exeext2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/exeext3.sh b/t/exeext3.sh index d09e60135..950f58ade 100644 --- a/t/exeext3.sh +++ b/t/exeext3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/exeext4.sh b/t/exeext4.sh index ecc28c9fb..7bc88c7e6 100644 --- a/t/exeext4.sh +++ b/t/exeext4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/ext.sh b/t/ext.sh index d771d41bc..4f8fba9a6 100644 --- a/t/ext.sh +++ b/t/ext.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/ext2.sh b/t/ext2.sh index 4858aec66..db7258413 100644 --- a/t/ext2.sh +++ b/t/ext2.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/ext3.sh b/t/ext3.sh index c09168716..2a4fb78ac 100644 --- a/t/ext3.sh +++ b/t/ext3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/extra-data.sh b/t/extra-data.sh index cded2a3c7..394af0d64 100644 --- a/t/extra-data.sh +++ b/t/extra-data.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/extra-deps-lt.sh b/t/extra-deps-lt.sh index 095094141..e0fa314f0 100644 --- a/t/extra-deps-lt.sh +++ b/t/extra-deps-lt.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/extra-deps.sh b/t/extra-deps.sh index 6446b573d..b031854ab 100644 --- a/t/extra-deps.sh +++ b/t/extra-deps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/extra-dist-dirs-and-subdirs.sh b/t/extra-dist-dirs-and-subdirs.sh index 48798d1a2..c37c996c6 100644 --- a/t/extra-dist-dirs-and-subdirs.sh +++ b/t/extra-dist-dirs-and-subdirs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/extra-dist-vpath-dir-merge.sh b/t/extra-dist-vpath-dir-merge.sh index e897dcb59..09001c9d6 100644 --- a/t/extra-dist-vpath-dir-merge.sh +++ b/t/extra-dist-vpath-dir-merge.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/extra-dist-vpath-dir.sh b/t/extra-dist-vpath-dir.sh index b4d4e884b..9238a6da4 100644 --- a/t/extra-dist-vpath-dir.sh +++ b/t/extra-dist-vpath-dir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/extra-dist-wildcards-gnu.sh b/t/extra-dist-wildcards-gnu.sh index b9e94adf5..8f480b71a 100644 --- a/t/extra-dist-wildcards-gnu.sh +++ b/t/extra-dist-wildcards-gnu.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/extra-dist-wildcards-vpath.sh b/t/extra-dist-wildcards-vpath.sh index 9a500fea5..1422f055e 100644 --- a/t/extra-dist-wildcards-vpath.sh +++ b/t/extra-dist-wildcards-vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/extra-dist-wildcards.sh b/t/extra-dist-wildcards.sh index 782b8d772..be0eae815 100644 --- a/t/extra-dist-wildcards.sh +++ b/t/extra-dist-wildcards.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/extra-portability.sh b/t/extra-portability.sh index 63849c768..bf1c830a7 100644 --- a/t/extra-portability.sh +++ b/t/extra-portability.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/extra-portability2.sh b/t/extra-portability2.sh index 8e6477f03..b3aaefd59 100644 --- a/t/extra-portability2.sh +++ b/t/extra-portability2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/extra-portability3.sh b/t/extra-portability3.sh index c231a6f5a..64f5b06e0 100644 --- a/t/extra-portability3.sh +++ b/t/extra-portability3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/extra-programs-and-libs.sh b/t/extra-programs-and-libs.sh index 53dede05e..c8df27dbd 100644 --- a/t/extra-programs-and-libs.sh +++ b/t/extra-programs-and-libs.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/extra-programs-empty.sh b/t/extra-programs-empty.sh index 4e3588991..ca5630f6e 100644 --- a/t/extra-programs-empty.sh +++ b/t/extra-programs-empty.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/extra-programs-misc.sh b/t/extra-programs-misc.sh index 38b6bdd66..e1cafc91a 100644 --- a/t/extra-programs-misc.sh +++ b/t/extra-programs-misc.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/extra-sources-no-spurious.sh b/t/extra-sources-no-spurious.sh index f3c3f5bdb..a0ff843a6 100644 --- a/t/extra-sources-no-spurious.sh +++ b/t/extra-sources-no-spurious.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/extra-sources.sh b/t/extra-sources.sh index 6f98766aa..e3f15c86e 100644 --- a/t/extra-sources.sh +++ b/t/extra-sources.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/extra.sh b/t/extra.sh index f041011d0..7dd81565b 100644 --- a/t/extra.sh +++ b/t/extra.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/f90only.sh b/t/f90only.sh index 0ad4ff826..4993652b2 100644 --- a/t/f90only.sh +++ b/t/f90only.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/flavor.sh b/t/flavor.sh index 2dfbaeb83..a5ffd575f 100644 --- a/t/flavor.sh +++ b/t/flavor.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/flibs.sh b/t/flibs.sh index 80d2be1c4..f38f41a8c 100644 --- a/t/flibs.sh +++ b/t/flibs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/fn99.sh b/t/fn99.sh index c01eac147..484d103a0 100644 --- a/t/fn99.sh +++ b/t/fn99.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/fn99subdir.sh b/t/fn99subdir.sh index 7b11db3db..129a311d3 100644 --- a/t/fn99subdir.sh +++ b/t/fn99subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/fnoc.sh b/t/fnoc.sh index 4d68b8a40..73b8c8e1c 100644 --- a/t/fnoc.sh +++ b/t/fnoc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/fonly.sh b/t/fonly.sh index 275b2d257..ff8b4eabf 100644 --- a/t/fonly.sh +++ b/t/fonly.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/forcemiss.sh b/t/forcemiss.sh index 7abfb55d6..dcc8e7141 100644 --- a/t/forcemiss.sh +++ b/t/forcemiss.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/forcemiss2.sh b/t/forcemiss2.sh index 9a6a0e22c..0af818a07 100644 --- a/t/forcemiss2.sh +++ b/t/forcemiss2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/fort1.sh b/t/fort1.sh index 68010b252..d69ea462e 100644 --- a/t/fort1.sh +++ b/t/fort1.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/fort2.sh b/t/fort2.sh index c2c0f0359..674ad0eea 100644 --- a/t/fort2.sh +++ b/t/fort2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/fort4.sh b/t/fort4.sh index 2ef27abeb..db7a679e0 100644 --- a/t/fort4.sh +++ b/t/fort4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/fort5.sh b/t/fort5.sh index 7b9991b96..c3000c0e5 100644 --- a/t/fort5.sh +++ b/t/fort5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/fortdep.sh b/t/fortdep.sh index 59c9b9d1f..08bce64c9 100644 --- a/t/fortdep.sh +++ b/t/fortdep.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/gcj.sh b/t/gcj.sh index 3de295363..4638155de 100644 --- a/t/gcj.sh +++ b/t/gcj.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/gcj2.sh b/t/gcj2.sh index 9f099255f..052fc8c13 100644 --- a/t/gcj2.sh +++ b/t/gcj2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/gcj3.sh b/t/gcj3.sh index 8e7c763e5..c61e6c0f2 100644 --- a/t/gcj3.sh +++ b/t/gcj3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/gcj4.sh b/t/gcj4.sh index 39fe5297d..fa29ee060 100644 --- a/t/gcj4.sh +++ b/t/gcj4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gcj5.sh b/t/gcj5.sh index 17f8f2921..dce8b8caa 100644 --- a/t/gcj5.sh +++ b/t/gcj5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gcj6.sh b/t/gcj6.sh index bba61d1cc..163211453 100644 --- a/t/gcj6.sh +++ b/t/gcj6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/get-sysconf.sh b/t/get-sysconf.sh index bd4932f4c..f1f70ae22 100644 --- a/t/get-sysconf.sh +++ b/t/get-sysconf.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/gettext-basics.sh b/t/gettext-basics.sh index d128a0d93..f3ebf9099 100644 --- a/t/gettext-basics.sh +++ b/t/gettext-basics.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gettext-config-rpath.sh b/t/gettext-config-rpath.sh index d99e36184..d73029045 100644 --- a/t/gettext-config-rpath.sh +++ b/t/gettext-config-rpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gettext-external-pr338.sh b/t/gettext-external-pr338.sh index c82af6995..a9fcb8136 100644 --- a/t/gettext-external-pr338.sh +++ b/t/gettext-external-pr338.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gettext-intl-subdir.sh b/t/gettext-intl-subdir.sh index a33f249b2..583d1d640 100644 --- a/t/gettext-intl-subdir.sh +++ b/t/gettext-intl-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/gettext-macros.sh b/t/gettext-macros.sh index 639a17263..0812eeab9 100644 --- a/t/gettext-macros.sh +++ b/t/gettext-macros.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/gettext-pr381.sh b/t/gettext-pr381.sh index ebf047d7c..5851073b5 100644 --- a/t/gettext-pr381.sh +++ b/t/gettext-pr381.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gnits.sh b/t/gnits.sh index 45530d89e..2c1c93f5b 100644 --- a/t/gnits.sh +++ b/t/gnits.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/gnits2.sh b/t/gnits2.sh index b1bf5201e..d6432cff4 100644 --- a/t/gnits2.sh +++ b/t/gnits2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gnits3.sh b/t/gnits3.sh index eb7f9a71b..643de4f1d 100644 --- a/t/gnits3.sh +++ b/t/gnits3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gnumake.sh b/t/gnumake.sh index af1a38b14..0a4b03961 100644 --- a/t/gnumake.sh +++ b/t/gnumake.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/gnuwarn.sh b/t/gnuwarn.sh index ad1a8a4cd..11d4cfd7b 100644 --- a/t/gnuwarn.sh +++ b/t/gnuwarn.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/gnuwarn2.sh b/t/gnuwarn2.sh index d269fb7ec..f90d0aa3e 100644 --- a/t/gnuwarn2.sh +++ b/t/gnuwarn2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/hdr-vars-defined-once.sh b/t/hdr-vars-defined-once.sh index 91fbcb63b..85a254ae6 100644 --- a/t/hdr-vars-defined-once.sh +++ b/t/hdr-vars-defined-once.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/header.sh b/t/header.sh index b1045d9ff..c255f6ed5 100644 --- a/t/header.sh +++ b/t/header.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/help-depend.sh b/t/help-depend.sh index a0e2bc6e3..a26a096a1 100644 --- a/t/help-depend.sh +++ b/t/help-depend.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help-depend2.sh b/t/help-depend2.sh index 14564dd37..d4d1c80bd 100644 --- a/t/help-depend2.sh +++ b/t/help-depend2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help-dmalloc.sh b/t/help-dmalloc.sh index 6795a140a..6b15ac363 100644 --- a/t/help-dmalloc.sh +++ b/t/help-dmalloc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help-init.sh b/t/help-init.sh index 1d69e914a..324648f95 100644 --- a/t/help-init.sh +++ b/t/help-init.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help-lispdir.sh b/t/help-lispdir.sh index 983531238..d7e129db1 100644 --- a/t/help-lispdir.sh +++ b/t/help-lispdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help-python.sh b/t/help-python.sh index 996f9160e..08aab1fc7 100644 --- a/t/help-python.sh +++ b/t/help-python.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/help-silent.sh b/t/help-silent.sh index c7f1e2042..9d1156f07 100644 --- a/t/help-silent.sh +++ b/t/help-silent.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help-upc.sh b/t/help-upc.sh index 9e11e59e6..d8c8da7ef 100644 --- a/t/help-upc.sh +++ b/t/help-upc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help.sh b/t/help.sh index e3c4e28ba..ebf27cdc3 100644 --- a/t/help.sh +++ b/t/help.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/help2.sh b/t/help2.sh index b49d49e12..40729a0af 100644 --- a/t/help2.sh +++ b/t/help2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help3.sh b/t/help3.sh index 3963a1f9c..54e497b00 100644 --- a/t/help3.sh +++ b/t/help3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/help4.sh b/t/help4.sh index d0e7313f2..58f70fbc9 100644 --- a/t/help4.sh +++ b/t/help4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/hfs.sh b/t/hfs.sh index 650a1a36e..169b8fbf1 100644 --- a/t/hfs.sh +++ b/t/hfs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/implicit.sh b/t/implicit.sh index 1ccb68811..5bf8d2a3a 100644 --- a/t/implicit.sh +++ b/t/implicit.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/init.sh b/t/init.sh index 2cd4e8e9d..5f3297178 100644 --- a/t/init.sh +++ b/t/init.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/init2.sh b/t/init2.sh index 1d8a8038c..2323f97f5 100644 --- a/t/init2.sh +++ b/t/init2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/install-info-dir.sh b/t/install-info-dir.sh index 46a70b949..ca6d399e0 100644 --- a/t/install-info-dir.sh +++ b/t/install-info-dir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/install-sh-option-C.sh b/t/install-sh-option-C.sh index a53e21df7..30d4324b3 100644 --- a/t/install-sh-option-C.sh +++ b/t/install-sh-option-C.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/install-sh-unittests.sh b/t/install-sh-unittests.sh index 98c711c85..c841ac74c 100644 --- a/t/install-sh-unittests.sh +++ b/t/install-sh-unittests.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/installdir.sh b/t/installdir.sh index ff782c852..c35657625 100644 --- a/t/installdir.sh +++ b/t/installdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/instdat.sh b/t/instdat.sh index 64e0c7f10..10ea480ec 100644 --- a/t/instdat.sh +++ b/t/instdat.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/instdat2.sh b/t/instdat2.sh index fcca61900..8333091bc 100644 --- a/t/instdat2.sh +++ b/t/instdat2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/instdir-cond.sh b/t/instdir-cond.sh index 182226269..635602e89 100644 --- a/t/instdir-cond.sh +++ b/t/instdir-cond.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/instdir-cond2.sh b/t/instdir-cond2.sh index cf22a6c92..9db3b3102 100644 --- a/t/instdir-cond2.sh +++ b/t/instdir-cond2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/instdir-java.sh b/t/instdir-java.sh index 1356f2437..62005a0f5 100644 --- a/t/instdir-java.sh +++ b/t/instdir-java.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/instdir-lisp.sh b/t/instdir-lisp.sh index b37e6fe8c..8f52b450b 100644 --- a/t/instdir-lisp.sh +++ b/t/instdir-lisp.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/instdir-ltlib.sh b/t/instdir-ltlib.sh index 92e844089..bb527acaa 100644 --- a/t/instdir-ltlib.sh +++ b/t/instdir-ltlib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/instdir-no-empty.sh b/t/instdir-no-empty.sh index 4c311e575..f24ef5804 100644 --- a/t/instdir-no-empty.sh +++ b/t/instdir-no-empty.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/instdir-prog.sh b/t/instdir-prog.sh index 73296f5ee..36de73da0 100644 --- a/t/instdir-prog.sh +++ b/t/instdir-prog.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/instdir-python.sh b/t/instdir-python.sh index 2bd4014ed..7d569a0b4 100644 --- a/t/instdir-python.sh +++ b/t/instdir-python.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/instdir-texi.sh b/t/instdir-texi.sh index 6f30419f7..baed305d1 100644 --- a/t/instdir-texi.sh +++ b/t/instdir-texi.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/instdir.sh b/t/instdir.sh index 872f3dca7..0d6dce5be 100644 --- a/t/instdir.sh +++ b/t/instdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/instdir2.sh b/t/instdir2.sh index 184859193..076558140 100644 --- a/t/instdir2.sh +++ b/t/instdir2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/instexec.sh b/t/instexec.sh index 1de3634de..8ed5c2464 100644 --- a/t/instexec.sh +++ b/t/instexec.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/instfail-info.sh b/t/instfail-info.sh index c699193ea..ee458bf33 100644 --- a/t/instfail-info.sh +++ b/t/instfail-info.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/instfail-java.sh b/t/instfail-java.sh index 3d974a696..abd6663ed 100644 --- a/t/instfail-java.sh +++ b/t/instfail-java.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/instfail-libtool.sh b/t/instfail-libtool.sh index 59167c98c..9fc58f129 100644 --- a/t/instfail-libtool.sh +++ b/t/instfail-libtool.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/instfail.sh b/t/instfail.sh index 7a8f1f21e..3bb56dcf6 100644 --- a/t/instfail.sh +++ b/t/instfail.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/insthook.sh b/t/insthook.sh index d2558e204..f7896dfd2 100644 --- a/t/insthook.sh +++ b/t/insthook.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/instman.sh b/t/instman.sh index d11785657..19f3f7933 100644 --- a/t/instman.sh +++ b/t/instman.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/instman2.sh b/t/instman2.sh index 9be7ca6c9..befcdffce 100644 --- a/t/instman2.sh +++ b/t/instman2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/instmany-mans.sh b/t/instmany-mans.sh index eb0c9dbb9..be33a02ab 100644 --- a/t/instmany-mans.sh +++ b/t/instmany-mans.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/instmany-python.sh b/t/instmany-python.sh index dfcf14bf2..40c850223 100644 --- a/t/instmany-python.sh +++ b/t/instmany-python.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/instmany.sh b/t/instmany.sh index 0a479cc30..94a805302 100644 --- a/t/instmany.sh +++ b/t/instmany.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/instspc.tap b/t/instspc.tap index 82663562a..a59d8243b 100644 --- a/t/instspc.tap +++ b/t/instspc.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/interp.sh b/t/interp.sh index d6419ddd7..dc2e8d49c 100644 --- a/t/interp.sh +++ b/t/interp.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/interp2.sh b/t/interp2.sh index e10ad13c3..90438cf20 100644 --- a/t/interp2.sh +++ b/t/interp2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/java-check.sh b/t/java-check.sh index e359c426b..bfa1ec100 100644 --- a/t/java-check.sh +++ b/t/java-check.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-clean.sh b/t/java-clean.sh index d57300186..5242f8f3c 100644 --- a/t/java-clean.sh +++ b/t/java-clean.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/java-compile-install.sh b/t/java-compile-install.sh index b7027cd58..3ffb7fa86 100644 --- a/t/java-compile-install.sh +++ b/t/java-compile-install.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-compile-run-flat.sh b/t/java-compile-run-flat.sh index 434374b60..e402962d3 100644 --- a/t/java-compile-run-flat.sh +++ b/t/java-compile-run-flat.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-compile-run-nested.sh b/t/java-compile-run-nested.sh index 896157343..26bebbf5e 100644 --- a/t/java-compile-run-nested.sh +++ b/t/java-compile-run-nested.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-empty-classpath.sh b/t/java-empty-classpath.sh index cc3dae3ba..1062065f9 100644 --- a/t/java-empty-classpath.sh +++ b/t/java-empty-classpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-extra.sh b/t/java-extra.sh index 18ad7c5e5..d2e8ca823 100644 --- a/t/java-extra.sh +++ b/t/java-extra.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-mix.sh b/t/java-mix.sh index 9cb04d261..6ef73ab3b 100644 --- a/t/java-mix.sh +++ b/t/java-mix.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-no-duplicate.sh b/t/java-no-duplicate.sh index 59b64a3f8..38d30d181 100644 --- a/t/java-no-duplicate.sh +++ b/t/java-no-duplicate.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-nobase.sh b/t/java-nobase.sh index 261b17ef8..6d473f884 100644 --- a/t/java-nobase.sh +++ b/t/java-nobase.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-noinst.sh b/t/java-noinst.sh index ce36661d4..d1312b0dd 100644 --- a/t/java-noinst.sh +++ b/t/java-noinst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-rebuild.sh b/t/java-rebuild.sh index 6133a76ac..02c4e67d1 100644 --- a/t/java-rebuild.sh +++ b/t/java-rebuild.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-sources.sh b/t/java-sources.sh index e42daa276..6e06a6ff1 100644 --- a/t/java-sources.sh +++ b/t/java-sources.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/java-uninstall.sh b/t/java-uninstall.sh index 92b5eb279..436d2aaaa 100644 --- a/t/java-uninstall.sh +++ b/t/java-uninstall.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/java.sh b/t/java.sh index fd451e0bf..a5c99cb55 100644 --- a/t/java.sh +++ b/t/java.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/java2.sh b/t/java2.sh index 1d126904a..294073600 100644 --- a/t/java2.sh +++ b/t/java2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/java3.sh b/t/java3.sh index 2c57684be..ab9097919 100644 --- a/t/java3.sh +++ b/t/java3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/javadir-undefined.sh b/t/javadir-undefined.sh index 1aee94dae..0905a59fc 100644 --- a/t/javadir-undefined.sh +++ b/t/javadir-undefined.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/javaflags.sh b/t/javaflags.sh index 2f434b274..67a6e1ebd 100644 --- a/t/javaflags.sh +++ b/t/javaflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/javaprim.sh b/t/javaprim.sh index 1400d8899..132a718e7 100644 --- a/t/javaprim.sh +++ b/t/javaprim.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/javasubst.sh b/t/javasubst.sh index 7b2872dda..203e22102 100644 --- a/t/javasubst.sh +++ b/t/javasubst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/ldadd.sh b/t/ldadd.sh index 2085a430b..f96d87da1 100644 --- a/t/ldadd.sh +++ b/t/ldadd.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/ldflags.sh b/t/ldflags.sh index b00b97386..40019dc4c 100644 --- a/t/ldflags.sh +++ b/t/ldflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/lex-clean-cxx.sh b/t/lex-clean-cxx.sh index 0f3510452..4d7a51f97 100644 --- a/t/lex-clean-cxx.sh +++ b/t/lex-clean-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-clean.sh b/t/lex-clean.sh index 040c5b00c..5b17d83dd 100644 --- a/t/lex-clean.sh +++ b/t/lex-clean.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-depend-cxx.sh b/t/lex-depend-cxx.sh index 7286e39c1..2abb1013c 100644 --- a/t/lex-depend-cxx.sh +++ b/t/lex-depend-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-depend-grep.sh b/t/lex-depend-grep.sh index eb39f0191..4a6473bc2 100644 --- a/t/lex-depend-grep.sh +++ b/t/lex-depend-grep.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/lex-depend.sh b/t/lex-depend.sh index 15867d458..8b34e6630 100644 --- a/t/lex-depend.sh +++ b/t/lex-depend.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-header.sh b/t/lex-header.sh index 1ba81ddc8..13bce2da3 100644 --- a/t/lex-header.sh +++ b/t/lex-header.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-lib-external.sh b/t/lex-lib-external.sh index 604d75bca..7e8598490 100644 --- a/t/lex-lib-external.sh +++ b/t/lex-lib-external.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-lib.sh b/t/lex-lib.sh index 2e5505ac9..e85db1367 100644 --- a/t/lex-lib.sh +++ b/t/lex-lib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/lex-libobj.sh b/t/lex-libobj.sh index f0eed91df..ab9922f98 100644 --- a/t/lex-libobj.sh +++ b/t/lex-libobj.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/lex-line.sh b/t/lex-line.sh index 258f6af56..f63066f0c 100644 --- a/t/lex-line.sh +++ b/t/lex-line.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-multiple.sh b/t/lex-multiple.sh index e804bb229..74f0dc530 100644 --- a/t/lex-multiple.sh +++ b/t/lex-multiple.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/lex-nodist.sh b/t/lex-nodist.sh index e5f82684e..081c23790 100644 --- a/t/lex-nodist.sh +++ b/t/lex-nodist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-noyywrap.sh b/t/lex-noyywrap.sh index 615a7fcdc..4fe85e52b 100644 --- a/t/lex-noyywrap.sh +++ b/t/lex-noyywrap.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/lex-pr204.sh b/t/lex-pr204.sh index dbc24485c..b81ed39fb 100644 --- a/t/lex-pr204.sh +++ b/t/lex-pr204.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex-subobj-nodep.sh b/t/lex-subobj-nodep.sh index 75e4f0c43..893c4e98a 100644 --- a/t/lex-subobj-nodep.sh +++ b/t/lex-subobj-nodep.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/lex.sh b/t/lex.sh index af520b074..3ab4812b8 100644 --- a/t/lex.sh +++ b/t/lex.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/lex2.sh b/t/lex2.sh index b2effd090..8da07f877 100644 --- a/t/lex2.sh +++ b/t/lex2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/lex3.sh b/t/lex3.sh index 07c8cec0c..964f8e085 100644 --- a/t/lex3.sh +++ b/t/lex3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/lex5.sh b/t/lex5.sh index 232f77dba..cd8fa4996 100644 --- a/t/lex5.sh +++ b/t/lex5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/lexcpp.sh b/t/lexcpp.sh index 1bee5ddac..fd6e49012 100644 --- a/t/lexcpp.sh +++ b/t/lexcpp.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/lexvpath.sh b/t/lexvpath.sh index 53d1da94e..6f398f5f9 100644 --- a/t/lexvpath.sh +++ b/t/lexvpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/lflags-cxx.sh b/t/lflags-cxx.sh index 6dbf16326..e5e3514fc 100644 --- a/t/lflags-cxx.sh +++ b/t/lflags-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/lflags.sh b/t/lflags.sh index 0d630ad71..9327ce88f 100644 --- a/t/lflags.sh +++ b/t/lflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libexec.sh b/t/libexec.sh index 29764b096..77f6a0a3f 100644 --- a/t/libexec.sh +++ b/t/libexec.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/libobj-basic.sh b/t/libobj-basic.sh index 190a35b51..12bafcc7f 100644 --- a/t/libobj-basic.sh +++ b/t/libobj-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj10.sh b/t/libobj10.sh index 9d4935da7..28b6a00a6 100644 --- a/t/libobj10.sh +++ b/t/libobj10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/libobj12.sh b/t/libobj12.sh index a8bbc042f..bb5724202 100644 --- a/t/libobj12.sh +++ b/t/libobj12.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/libobj13.sh b/t/libobj13.sh index cf26d7d0e..719df2423 100644 --- a/t/libobj13.sh +++ b/t/libobj13.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/libobj14.sh b/t/libobj14.sh index b9fbbda91..0c592665e 100644 --- a/t/libobj14.sh +++ b/t/libobj14.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/libobj15a.sh b/t/libobj15a.sh index 7213c9499..a40ff654f 100644 --- a/t/libobj15a.sh +++ b/t/libobj15a.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj15b.sh b/t/libobj15b.sh index 79ce8b569..8e93befc6 100644 --- a/t/libobj15b.sh +++ b/t/libobj15b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj15c.sh b/t/libobj15c.sh index ff3a8d86c..a29d089f8 100644 --- a/t/libobj15c.sh +++ b/t/libobj15c.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj16a.sh b/t/libobj16a.sh index 98ce444ff..8481c0691 100644 --- a/t/libobj16a.sh +++ b/t/libobj16a.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj16b.sh b/t/libobj16b.sh index ed4674cf7..d8d65f0eb 100644 --- a/t/libobj16b.sh +++ b/t/libobj16b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj17.sh b/t/libobj17.sh index 017fe095a..9800c886d 100644 --- a/t/libobj17.sh +++ b/t/libobj17.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj18.sh b/t/libobj18.sh index ac007982b..f10b9d82e 100644 --- a/t/libobj18.sh +++ b/t/libobj18.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj19.sh b/t/libobj19.sh index 1a4cf23d4..1270c5a68 100644 --- a/t/libobj19.sh +++ b/t/libobj19.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj2.sh b/t/libobj2.sh index c996906ea..71c8fe0e0 100644 --- a/t/libobj2.sh +++ b/t/libobj2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/libobj20a.sh b/t/libobj20a.sh index 635798c1a..7b07b0f9a 100644 --- a/t/libobj20a.sh +++ b/t/libobj20a.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj20b.sh b/t/libobj20b.sh index f86a46c15..60d42c78e 100644 --- a/t/libobj20b.sh +++ b/t/libobj20b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj20c.sh b/t/libobj20c.sh index 7b918021e..65e222f8c 100644 --- a/t/libobj20c.sh +++ b/t/libobj20c.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/libobj3.sh b/t/libobj3.sh index 6f2d6e10d..4510fac9d 100644 --- a/t/libobj3.sh +++ b/t/libobj3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/libobj4.sh b/t/libobj4.sh index 1956fbd41..e01d60f27 100644 --- a/t/libobj4.sh +++ b/t/libobj4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/libobj5.sh b/t/libobj5.sh index 9689aa52e..700c12db3 100644 --- a/t/libobj5.sh +++ b/t/libobj5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/libobj7.sh b/t/libobj7.sh index f68b1af59..894d11f3f 100644 --- a/t/libobj7.sh +++ b/t/libobj7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/library.sh b/t/library.sh index cea4450d0..b09c5ddbb 100644 --- a/t/library.sh +++ b/t/library.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/library2.sh b/t/library2.sh index 27c5a47d5..5b450b452 100644 --- a/t/library2.sh +++ b/t/library2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/library3.sh b/t/library3.sh index 906b85532..ba3b528ca 100644 --- a/t/library3.sh +++ b/t/library3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/libtoo10.sh b/t/libtoo10.sh index e8b5fd383..466d30740 100644 --- a/t/libtoo10.sh +++ b/t/libtoo10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/libtoo11.sh b/t/libtoo11.sh index 5e597fa00..35dd5344b 100644 --- a/t/libtoo11.sh +++ b/t/libtoo11.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/libtool-macros.sh b/t/libtool-macros.sh index 1e1e95c8b..9bfa79aea 100644 --- a/t/libtool-macros.sh +++ b/t/libtool-macros.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/libtool.sh b/t/libtool.sh index a1d8abe8a..0fd77e679 100644 --- a/t/libtool.sh +++ b/t/libtool.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/libtool2.sh b/t/libtool2.sh index bf41b731e..e362309cc 100644 --- a/t/libtool2.sh +++ b/t/libtool2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/libtool3.sh b/t/libtool3.sh index 5653280e6..ecc2aa3f5 100644 --- a/t/libtool3.sh +++ b/t/libtool3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/libtool4.sh b/t/libtool4.sh index 2300f70c6..ad4a0d1c7 100644 --- a/t/libtool4.sh +++ b/t/libtool4.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/libtool5.sh b/t/libtool5.sh index 61b92f131..dd5e07a2c 100644 --- a/t/libtool5.sh +++ b/t/libtool5.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/libtool6.sh b/t/libtool6.sh index 1512a4484..f3f754b45 100644 --- a/t/libtool6.sh +++ b/t/libtool6.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/libtool7.sh b/t/libtool7.sh index 2a5b62b8e..e67b03db1 100644 --- a/t/libtool7.sh +++ b/t/libtool7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/libtool8.sh b/t/libtool8.sh index a44b67b9b..8a5b3b9c1 100644 --- a/t/libtool8.sh +++ b/t/libtool8.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/libtool9.sh b/t/libtool9.sh index 411d2bbd9..459a9e186 100644 --- a/t/libtool9.sh +++ b/t/libtool9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/license.sh b/t/license.sh index e7615f70f..f3630aee2 100644 --- a/t/license.sh +++ b/t/license.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/license2.sh b/t/license2.sh index 9e7107b0f..5d458d6c3 100644 --- a/t/license2.sh +++ b/t/license2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/link_c_cxx.sh b/t/link_c_cxx.sh index 5fd82ac84..76fbfcb9e 100644 --- a/t/link_c_cxx.sh +++ b/t/link_c_cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/link_cond.sh b/t/link_cond.sh index 85be517b2..e0f75c25f 100644 --- a/t/link_cond.sh +++ b/t/link_cond.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/link_dist.sh b/t/link_dist.sh index 1d67695ff..7b773ee3f 100644 --- a/t/link_dist.sh +++ b/t/link_dist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/link_f90_only.sh b/t/link_f90_only.sh index 237181fc6..c6fe5b83c 100644 --- a/t/link_f90_only.sh +++ b/t/link_f90_only.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/link_f_only.sh b/t/link_f_only.sh index eb60e6d02..b0779c3f2 100644 --- a/t/link_f_only.sh +++ b/t/link_f_only.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/link_fc.sh b/t/link_fc.sh index 22267436a..23e31c462 100644 --- a/t/link_fc.sh +++ b/t/link_fc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/link_fccxx.sh b/t/link_fccxx.sh index b05a3ad68..1fe3955b8 100644 --- a/t/link_fccxx.sh +++ b/t/link_fccxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/link_fcxx.sh b/t/link_fcxx.sh index be213004b..a636d91d5 100644 --- a/t/link_fcxx.sh +++ b/t/link_fcxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/link_override.sh b/t/link_override.sh index ed432c4ab..1b78f790d 100644 --- a/t/link_override.sh +++ b/t/link_override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/lisp-flags.sh b/t/lisp-flags.sh index ee156d777..fb797472d 100644 --- a/t/lisp-flags.sh +++ b/t/lisp-flags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/lisp-loadpath.sh b/t/lisp-loadpath.sh index 6d381bd26..663a1bca9 100644 --- a/t/lisp-loadpath.sh +++ b/t/lisp-loadpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/lisp-pr11806.sh b/t/lisp-pr11806.sh index 5db265d5e..6cb0c2984 100644 --- a/t/lisp-pr11806.sh +++ b/t/lisp-pr11806.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/lisp-subdir-mix.sh b/t/lisp-subdir-mix.sh index b721d3488..49b37dab7 100644 --- a/t/lisp-subdir-mix.sh +++ b/t/lisp-subdir-mix.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/lisp-subdir.sh b/t/lisp-subdir.sh index 03b6af300..3f67036c6 100644 --- a/t/lisp-subdir.sh +++ b/t/lisp-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/lisp-subdir2.sh b/t/lisp-subdir2.sh index 0eb3af197..9cfbf2e70 100644 --- a/t/lisp-subdir2.sh +++ b/t/lisp-subdir2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/lisp2.sh b/t/lisp2.sh index 2cf16b503..ff641f991 100644 --- a/t/lisp2.sh +++ b/t/lisp2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/lisp3.sh b/t/lisp3.sh index 63e862250..67e11fdad 100644 --- a/t/lisp3.sh +++ b/t/lisp3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/lisp4.sh b/t/lisp4.sh index e6325b0d8..3d227d327 100644 --- a/t/lisp4.sh +++ b/t/lisp4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/lisp5.sh b/t/lisp5.sh index a4bb6fd0d..829f3c60d 100644 --- a/t/lisp5.sh +++ b/t/lisp5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/lisp6.sh b/t/lisp6.sh index 0dd434466..752316757 100644 --- a/t/lisp6.sh +++ b/t/lisp6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/lisp7.sh b/t/lisp7.sh index b58059bd2..32f0cbaa8 100644 --- a/t/lisp7.sh +++ b/t/lisp7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/lisp8.sh b/t/lisp8.sh index c42488683..8c6cb3326 100644 --- a/t/lisp8.sh +++ b/t/lisp8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/lispdry.sh b/t/lispdry.sh index 4cab399a7..36255d474 100644 --- a/t/lispdry.sh +++ b/t/lispdry.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index a9694d816..6b2eebe78 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -2,7 +2,7 @@ ## testsuite. This fragment is meant to be included by the Makefile.am, ## but also to be executed directly by make when bootstrapping automake. -## Copyright (C) 2011-2013 Free Software Foundation, Inc. +## Copyright (C) 2011-2014 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 diff --git a/t/listval.sh b/t/listval.sh index a35dcb07f..acb1741a7 100644 --- a/t/listval.sh +++ b/t/listval.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/location.sh b/t/location.sh index a29a262e6..951166d08 100644 --- a/t/location.sh +++ b/t/location.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/longlin2.sh b/t/longlin2.sh index 6729e3f51..99505e9fb 100644 --- a/t/longlin2.sh +++ b/t/longlin2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/longline.sh b/t/longline.sh index 9dc50edc2..819c9268b 100644 --- a/t/longline.sh +++ b/t/longline.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/ltcond.sh b/t/ltcond.sh index a076dc8ae..1df5e18f3 100644 --- a/t/ltcond.sh +++ b/t/ltcond.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/ltcond2.sh b/t/ltcond2.sh index fd4170d3a..b239c26e2 100644 --- a/t/ltcond2.sh +++ b/t/ltcond2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/ltconv.sh b/t/ltconv.sh index bfba2687b..89f20cab8 100644 --- a/t/ltconv.sh +++ b/t/ltconv.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/ltdeps.sh b/t/ltdeps.sh index 7599e2797..adcb8e323 100644 --- a/t/ltdeps.sh +++ b/t/ltdeps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/ltinit.sh b/t/ltinit.sh index 14653d7cd..b4de8ac1a 100644 --- a/t/ltinit.sh +++ b/t/ltinit.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/ltinstloc.sh b/t/ltinstloc.sh index bae3d49df..4228a98ef 100644 --- a/t/ltinstloc.sh +++ b/t/ltinstloc.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/ltlibobjs.sh b/t/ltlibobjs.sh index 5cdc9b052..822df086b 100644 --- a/t/ltlibobjs.sh +++ b/t/ltlibobjs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/ltlibsrc.sh b/t/ltlibsrc.sh index 8c8098bdb..a60c06fb0 100644 --- a/t/ltlibsrc.sh +++ b/t/ltlibsrc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/ltorder.sh b/t/ltorder.sh index de87274f7..afcce7754 100644 --- a/t/ltorder.sh +++ b/t/ltorder.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/m4-inclusion.sh b/t/m4-inclusion.sh index 286ca186b..092cd04d9 100644 --- a/t/m4-inclusion.sh +++ b/t/m4-inclusion.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/maintclean-vpath.sh b/t/maintclean-vpath.sh index 161eb81cb..73d1f26cc 100644 --- a/t/maintclean-vpath.sh +++ b/t/maintclean-vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/maintclean.sh b/t/maintclean.sh index 5fa2a011e..20102a4eb 100644 --- a/t/maintclean.sh +++ b/t/maintclean.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/maintmode-configure-msg.sh b/t/maintmode-configure-msg.sh index e578bbf29..43283075a 100644 --- a/t/maintmode-configure-msg.sh +++ b/t/maintmode-configure-msg.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/make-dryrun.tap b/t/make-dryrun.tap index 0dbe3bb89..ba308ae1f 100644 --- a/t/make-dryrun.tap +++ b/t/make-dryrun.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/make-is-gnu.sh b/t/make-is-gnu.sh index a4b7faab9..0465a3c05 100644 --- a/t/make-is-gnu.sh +++ b/t/make-is-gnu.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/make-keepgoing.tap b/t/make-keepgoing.tap index a595eebb3..1ec2f7df6 100644 --- a/t/make-keepgoing.tap +++ b/t/make-keepgoing.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/make.sh b/t/make.sh index dc627ecb3..f77797d85 100644 --- a/t/make.sh +++ b/t/make.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/makefile-deps.sh b/t/makefile-deps.sh index 6a013c5c0..f6cdfcd1e 100644 --- a/t/makefile-deps.sh +++ b/t/makefile-deps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/makej.sh b/t/makej.sh index b9e1d51e3..505d10887 100644 --- a/t/makej.sh +++ b/t/makej.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/makej2.sh b/t/makej2.sh index c17f05aeb..4a565ac98 100644 --- a/t/makej2.sh +++ b/t/makej2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/maken.sh b/t/maken.sh index 168a64bec..74ddf0157 100644 --- a/t/maken.sh +++ b/t/maken.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/maken3.sh b/t/maken3.sh index 171d716e7..e7cd93601 100644 --- a/t/maken3.sh +++ b/t/maken3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/makevars.sh b/t/makevars.sh index a82251536..e6bffb274 100644 --- a/t/makevars.sh +++ b/t/makevars.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/man.sh b/t/man.sh index 52ded330f..f6237484b 100644 --- a/t/man.sh +++ b/t/man.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/man2.sh b/t/man2.sh index 8d1d35d8d..a8c62554b 100644 --- a/t/man2.sh +++ b/t/man2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/man3.sh b/t/man3.sh index 31c283298..270b14121 100644 --- a/t/man3.sh +++ b/t/man3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/man5.sh b/t/man5.sh index e500ccc94..78be930cc 100644 --- a/t/man5.sh +++ b/t/man5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/man6.sh b/t/man6.sh index ed97b04ed..8e13a06fb 100644 --- a/t/man6.sh +++ b/t/man6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/man7.sh b/t/man7.sh index 53ed3a762..07f642fd0 100644 --- a/t/man7.sh +++ b/t/man7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/man8.sh b/t/man8.sh index be76aef72..449d38455 100644 --- a/t/man8.sh +++ b/t/man8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/mdate.sh b/t/mdate.sh index e581b3241..9bdee5073 100644 --- a/t/mdate.sh +++ b/t/mdate.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/mdate2.sh b/t/mdate2.sh index fa41864ed..44988d425 100644 --- a/t/mdate2.sh +++ b/t/mdate2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/mdate3.sh b/t/mdate3.sh index e0de1a2c5..05dbedc82 100644 --- a/t/mdate3.sh +++ b/t/mdate3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/mdate4.sh b/t/mdate4.sh index 210b5c24d..4589af615 100644 --- a/t/mdate4.sh +++ b/t/mdate4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/mdate5.sh b/t/mdate5.sh index fadc363eb..89ee0c439 100644 --- a/t/mdate5.sh +++ b/t/mdate5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/mdate6.sh b/t/mdate6.sh index 4a0dbb771..76b112fbc 100644 --- a/t/mdate6.sh +++ b/t/mdate6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/missing-auxfile-stops-makefiles-creation.sh b/t/missing-auxfile-stops-makefiles-creation.sh index 754b316fe..ed8bca80f 100644 --- a/t/missing-auxfile-stops-makefiles-creation.sh +++ b/t/missing-auxfile-stops-makefiles-creation.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/missing-version-mismatch.sh b/t/missing-version-mismatch.sh index e7f0e32e2..a0a5f088a 100644 --- a/t/missing-version-mismatch.sh +++ b/t/missing-version-mismatch.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/missing3.sh b/t/missing3.sh index 2b6e1eb04..5792204ed 100644 --- a/t/missing3.sh +++ b/t/missing3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/mkdir_p.sh b/t/mkdir_p.sh index 2e834239a..c39858f93 100644 --- a/t/mkdir_p.sh +++ b/t/mkdir_p.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/mkdirp-deprecation.sh b/t/mkdirp-deprecation.sh index 69a499d7e..6afb3ff55 100644 --- a/t/mkdirp-deprecation.sh +++ b/t/mkdirp-deprecation.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/mkinst2.sh b/t/mkinst2.sh index fe6e148b5..ebd529ff4 100644 --- a/t/mkinst2.sh +++ b/t/mkinst2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/mkinst3.sh b/t/mkinst3.sh index ea8a25ae9..eed5fdf18 100644 --- a/t/mkinst3.sh +++ b/t/mkinst3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/mkinstall.sh b/t/mkinstall.sh index da0aa98f0..f0dc2b7b9 100644 --- a/t/mkinstall.sh +++ b/t/mkinstall.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/mmode.sh b/t/mmode.sh index 4fdf201cd..a50428cc1 100644 --- a/t/mmode.sh +++ b/t/mmode.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/mmodely.sh b/t/mmodely.sh index 42f8ca4ae..ed60a9e9f 100644 --- a/t/mmodely.sh +++ b/t/mmodely.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/no-extra-c-stuff.sh b/t/no-extra-c-stuff.sh index de0dd12e9..168b1599e 100644 --- a/t/no-extra-c-stuff.sh +++ b/t/no-extra-c-stuff.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/no-extra-makefile-code.sh b/t/no-extra-makefile-code.sh index 64ef502a8..0137e57aa 100644 --- a/t/no-extra-makefile-code.sh +++ b/t/no-extra-makefile-code.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/no-spurious-install-recursive.sh b/t/no-spurious-install-recursive.sh index f7af16aef..5045f4e86 100644 --- a/t/no-spurious-install-recursive.sh +++ b/t/no-spurious-install-recursive.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/nobase-libtool.sh b/t/nobase-libtool.sh index 2faff9c74..ee057fcb5 100644 --- a/t/nobase-libtool.sh +++ b/t/nobase-libtool.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/nobase-nodist.sh b/t/nobase-nodist.sh index 44c13c779..e4f82f4bb 100644 --- a/t/nobase-nodist.sh +++ b/t/nobase-nodist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/nobase-python.sh b/t/nobase-python.sh index 33de07a1b..26ffff85b 100644 --- a/t/nobase-python.sh +++ b/t/nobase-python.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/nobase.sh b/t/nobase.sh index ba76b4960..b847f3ac2 100644 --- a/t/nobase.sh +++ b/t/nobase.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/nodef.sh b/t/nodef.sh index 68659d976..dffdc5193 100644 --- a/t/nodef.sh +++ b/t/nodef.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/nodef2.sh b/t/nodef2.sh index dbda85a96..e59781890 100644 --- a/t/nodef2.sh +++ b/t/nodef2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/nodep.sh b/t/nodep.sh index b0b29f645..c32aa5b40 100644 --- a/t/nodep.sh +++ b/t/nodep.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/nodep2.sh b/t/nodep2.sh index 5633ef98c..aa1f7a6ae 100644 --- a/t/nodep2.sh +++ b/t/nodep2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/nodepcomp.sh b/t/nodepcomp.sh index af7cec904..3e8e43633 100644 --- a/t/nodepcomp.sh +++ b/t/nodepcomp.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/nodist.sh b/t/nodist.sh index 285b21d8b..65ee3eb1d 100644 --- a/t/nodist.sh +++ b/t/nodist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/nodist2.sh b/t/nodist2.sh index 59e82f66f..9f4c240a9 100644 --- a/t/nodist2.sh +++ b/t/nodist2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/nodist3.sh b/t/nodist3.sh index a3b437d84..c00f5cb44 100644 --- a/t/nodist3.sh +++ b/t/nodist3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/noinst.sh b/t/noinst.sh index 1ffa2b5e1..4d52162f8 100644 --- a/t/noinst.sh +++ b/t/noinst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/noinstdir.sh b/t/noinstdir.sh index b5bc5bc00..d2075058f 100644 --- a/t/noinstdir.sh +++ b/t/noinstdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/nolink.sh b/t/nolink.sh index 67da5e6c9..5cc7c747e 100644 --- a/t/nolink.sh +++ b/t/nolink.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/nostdinc.sh b/t/nostdinc.sh index fd777ba98..4e9954a3a 100644 --- a/t/nostdinc.sh +++ b/t/nostdinc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/notrans.sh b/t/notrans.sh index 1492b6685..803248201 100644 --- a/t/notrans.sh +++ b/t/notrans.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/number.sh b/t/number.sh index 61a3dee8d..9e6099f21 100644 --- a/t/number.sh +++ b/t/number.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/objc-basic.sh b/t/objc-basic.sh index 22f5f99e9..2dcbd543b 100644 --- a/t/objc-basic.sh +++ b/t/objc-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objc-deps.sh b/t/objc-deps.sh index 5dcb884f2..a2cb76323 100644 --- a/t/objc-deps.sh +++ b/t/objc-deps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objc-flags.sh b/t/objc-flags.sh index 9b2bbda7a..f38432838 100644 --- a/t/objc-flags.sh +++ b/t/objc-flags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objc-megademo.sh b/t/objc-megademo.sh index 07764cd0a..751c9b19a 100644 --- a/t/objc-megademo.sh +++ b/t/objc-megademo.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objc-minidemo.sh b/t/objc-minidemo.sh index 5a2d8214c..4a286db9c 100644 --- a/t/objc-minidemo.sh +++ b/t/objc-minidemo.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objcxx-basic.sh b/t/objcxx-basic.sh index 461ce10ab..07598e9ef 100644 --- a/t/objcxx-basic.sh +++ b/t/objcxx-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objcxx-deps.sh b/t/objcxx-deps.sh index 032e445bd..4a555ee4f 100644 --- a/t/objcxx-deps.sh +++ b/t/objcxx-deps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objcxx-flags.sh b/t/objcxx-flags.sh index 986ebf55b..7bca86796 100644 --- a/t/objcxx-flags.sh +++ b/t/objcxx-flags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objcxx-minidemo.sh b/t/objcxx-minidemo.sh index 41f663458..10c25641a 100644 --- a/t/objcxx-minidemo.sh +++ b/t/objcxx-minidemo.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/objext-pr10128.sh b/t/objext-pr10128.sh index 6fb64ab2a..4c4b05033 100644 --- a/t/objext-pr10128.sh +++ b/t/objext-pr10128.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/oldvars.sh b/t/oldvars.sh index b1add92e9..b09f93994 100644 --- a/t/oldvars.sh +++ b/t/oldvars.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/order.sh b/t/order.sh index 9e2a0883e..3855064ac 100644 --- a/t/order.sh +++ b/t/order.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/output-order.sh b/t/output-order.sh index 6d391d6d0..f3dd83df6 100644 --- a/t/output-order.sh +++ b/t/output-order.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/output.sh b/t/output.sh index da21f645c..505907f40 100644 --- a/t/output.sh +++ b/t/output.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/output10.sh b/t/output10.sh index d2a84f0ad..15f2a79fd 100644 --- a/t/output10.sh +++ b/t/output10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/output11.sh b/t/output11.sh index 2c236946d..69a006d3c 100644 --- a/t/output11.sh +++ b/t/output11.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/output12.sh b/t/output12.sh index 36e9f9ebb..e20856982 100644 --- a/t/output12.sh +++ b/t/output12.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/output13.sh b/t/output13.sh index e9779e73f..bee329b41 100644 --- a/t/output13.sh +++ b/t/output13.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/output2.sh b/t/output2.sh index 1ef3e1dea..0c9e09332 100644 --- a/t/output2.sh +++ b/t/output2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/output3.sh b/t/output3.sh index 83c518cd8..71c3870a1 100644 --- a/t/output3.sh +++ b/t/output3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/output4.sh b/t/output4.sh index ed5e4db95..f25d4ee86 100644 --- a/t/output4.sh +++ b/t/output4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/output5.sh b/t/output5.sh index 1e76898f6..bbf0418e9 100644 --- a/t/output5.sh +++ b/t/output5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/output6.sh b/t/output6.sh index b02f122fb..2c9267968 100644 --- a/t/output6.sh +++ b/t/output6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/output7.sh b/t/output7.sh index d8832db12..745ab4e76 100644 --- a/t/output7.sh +++ b/t/output7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/output8.sh b/t/output8.sh index 3c4b3e8a4..628496b06 100644 --- a/t/output8.sh +++ b/t/output8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/output9.sh b/t/output9.sh index 7424236e5..2f55b9c9d 100644 --- a/t/output9.sh +++ b/t/output9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/override-conditional-1.sh b/t/override-conditional-1.sh index 7dc418838..5bb22c50e 100644 --- a/t/override-conditional-1.sh +++ b/t/override-conditional-1.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/override-conditional-2.sh b/t/override-conditional-2.sh index 9a352c695..98d56c279 100644 --- a/t/override-conditional-2.sh +++ b/t/override-conditional-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/override-conditional-pr13940.sh b/t/override-conditional-pr13940.sh index 4bc412888..ec27b56a5 100644 --- a/t/override-conditional-pr13940.sh +++ b/t/override-conditional-pr13940.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/override-html.sh b/t/override-html.sh index 8666b3785..d7fafc323 100644 --- a/t/override-html.sh +++ b/t/override-html.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/override-suggest-local.sh b/t/override-suggest-local.sh index bf0f6adc4..082c846f1 100644 --- a/t/override-suggest-local.sh +++ b/t/override-suggest-local.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/parallel-am.sh b/t/parallel-am.sh index ea39518b2..84ee1cfca 100644 --- a/t/parallel-am.sh +++ b/t/parallel-am.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/parallel-am2.sh b/t/parallel-am2.sh index 10fc51bfb..460637656 100644 --- a/t/parallel-am2.sh +++ b/t/parallel-am2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/parallel-am3.sh b/t/parallel-am3.sh index 146e59f20..488159c87 100644 --- a/t/parallel-am3.sh +++ b/t/parallel-am3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/parallel-tests-basics.sh b/t/parallel-tests-basics.sh index 1d25cbc15..e121e5784 100644 --- a/t/parallel-tests-basics.sh +++ b/t/parallel-tests-basics.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-cmdline-override.sh b/t/parallel-tests-cmdline-override.sh index d4d9abcb8..b1066bd34 100644 --- a/t/parallel-tests-cmdline-override.sh +++ b/t/parallel-tests-cmdline-override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-concurrency-2.sh b/t/parallel-tests-concurrency-2.sh index ad48051cd..e941e8735 100644 --- a/t/parallel-tests-concurrency-2.sh +++ b/t/parallel-tests-concurrency-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-concurrency.sh b/t/parallel-tests-concurrency.sh index 7fbd20eeb..e2c622b94 100644 --- a/t/parallel-tests-concurrency.sh +++ b/t/parallel-tests-concurrency.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-console-output.sh b/t/parallel-tests-console-output.sh index ea3c15bb6..e96c280be 100644 --- a/t/parallel-tests-console-output.sh +++ b/t/parallel-tests-console-output.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-driver-install.sh b/t/parallel-tests-driver-install.sh index d49b35a0c..46856d357 100644 --- a/t/parallel-tests-driver-install.sh +++ b/t/parallel-tests-driver-install.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-dry-run-1.sh b/t/parallel-tests-dry-run-1.sh index be81456dd..1a6e5f224 100644 --- a/t/parallel-tests-dry-run-1.sh +++ b/t/parallel-tests-dry-run-1.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/parallel-tests-dry-run-2.sh b/t/parallel-tests-dry-run-2.sh index efb96e1a1..1afa08402 100644 --- a/t/parallel-tests-dry-run-2.sh +++ b/t/parallel-tests-dry-run-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-empty-testlogs.sh b/t/parallel-tests-empty-testlogs.sh index 95b3657a7..b0c8bc2d2 100644 --- a/t/parallel-tests-empty-testlogs.sh +++ b/t/parallel-tests-empty-testlogs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-empty.sh b/t/parallel-tests-empty.sh index d431bf2c7..c737def08 100644 --- a/t/parallel-tests-empty.sh +++ b/t/parallel-tests-empty.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-exeext.sh b/t/parallel-tests-exeext.sh index a4051d26d..f03ca9a7a 100644 --- a/t/parallel-tests-exeext.sh +++ b/t/parallel-tests-exeext.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-exit-status-reported.sh b/t/parallel-tests-exit-status-reported.sh index d40f1f58a..691c15c3a 100644 --- a/t/parallel-tests-exit-status-reported.sh +++ b/t/parallel-tests-exit-status-reported.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/parallel-tests-exit-statuses.sh b/t/parallel-tests-exit-statuses.sh index 6bbc61587..7e122a2e1 100644 --- a/t/parallel-tests-exit-statuses.sh +++ b/t/parallel-tests-exit-statuses.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-extra-programs.sh b/t/parallel-tests-extra-programs.sh index 01252195b..299b11b78 100644 --- a/t/parallel-tests-extra-programs.sh +++ b/t/parallel-tests-extra-programs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-fd-redirect-exeext.sh b/t/parallel-tests-fd-redirect-exeext.sh index 1dcdbd906..d10041891 100644 --- a/t/parallel-tests-fd-redirect-exeext.sh +++ b/t/parallel-tests-fd-redirect-exeext.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-fd-redirect.sh b/t/parallel-tests-fd-redirect.sh index cb331ca2f..6b9ac052c 100644 --- a/t/parallel-tests-fd-redirect.sh +++ b/t/parallel-tests-fd-redirect.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-fork-bomb.sh b/t/parallel-tests-fork-bomb.sh index 62cd24163..81ac0cf41 100644 --- a/t/parallel-tests-fork-bomb.sh +++ b/t/parallel-tests-fork-bomb.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-generated-and-distributed.sh b/t/parallel-tests-generated-and-distributed.sh index 6ab8a0d9d..e7010ec85 100644 --- a/t/parallel-tests-generated-and-distributed.sh +++ b/t/parallel-tests-generated-and-distributed.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-harderror.sh b/t/parallel-tests-harderror.sh index 26832a655..d269b0ec5 100644 --- a/t/parallel-tests-harderror.sh +++ b/t/parallel-tests-harderror.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-interrupt.tap b/t/parallel-tests-interrupt.tap index 106859039..1917f1a48 100644 --- a/t/parallel-tests-interrupt.tap +++ b/t/parallel-tests-interrupt.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-log-compiler-1.sh b/t/parallel-tests-log-compiler-1.sh index fd1f1c6ae..78dbfc824 100644 --- a/t/parallel-tests-log-compiler-1.sh +++ b/t/parallel-tests-log-compiler-1.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-log-compiler-2.sh b/t/parallel-tests-log-compiler-2.sh index f970adee3..9394d2c24 100644 --- a/t/parallel-tests-log-compiler-2.sh +++ b/t/parallel-tests-log-compiler-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-log-compiler-example.sh b/t/parallel-tests-log-compiler-example.sh index 8b81697e8..99c85fe86 100644 --- a/t/parallel-tests-log-compiler-example.sh +++ b/t/parallel-tests-log-compiler-example.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-log-override-1.sh b/t/parallel-tests-log-override-1.sh index 49fba566d..59f1917ef 100644 --- a/t/parallel-tests-log-override-1.sh +++ b/t/parallel-tests-log-override-1.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-log-override-2.sh b/t/parallel-tests-log-override-2.sh index b08f7560e..1aa527cec 100644 --- a/t/parallel-tests-log-override-2.sh +++ b/t/parallel-tests-log-override-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-log-override-recheck.sh b/t/parallel-tests-log-override-recheck.sh index 2d667acdb..1383c4d92 100644 --- a/t/parallel-tests-log-override-recheck.sh +++ b/t/parallel-tests-log-override-recheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-no-color-in-log.sh b/t/parallel-tests-no-color-in-log.sh index 966501658..c69f658d6 100644 --- a/t/parallel-tests-no-color-in-log.sh +++ b/t/parallel-tests-no-color-in-log.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-no-spurious-summary.sh b/t/parallel-tests-no-spurious-summary.sh index 7c6398b76..a38cabd4e 100644 --- a/t/parallel-tests-no-spurious-summary.sh +++ b/t/parallel-tests-no-spurious-summary.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-once.sh b/t/parallel-tests-once.sh index 6fdc09851..c92c8a75c 100644 --- a/t/parallel-tests-once.sh +++ b/t/parallel-tests-once.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-recheck-depends-on-all.sh b/t/parallel-tests-recheck-depends-on-all.sh index 544e2de6a..e4ba11f51 100644 --- a/t/parallel-tests-recheck-depends-on-all.sh +++ b/t/parallel-tests-recheck-depends-on-all.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/parallel-tests-recheck-pr11791.sh b/t/parallel-tests-recheck-pr11791.sh index 1933aa98d..f015274cc 100644 --- a/t/parallel-tests-recheck-pr11791.sh +++ b/t/parallel-tests-recheck-pr11791.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/parallel-tests-recheck.sh b/t/parallel-tests-recheck.sh index 6bba9c894..4968c1efd 100644 --- a/t/parallel-tests-recheck.sh +++ b/t/parallel-tests-recheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-reset-term.sh b/t/parallel-tests-reset-term.sh index 3dae4b670..ffa639253 100644 --- a/t/parallel-tests-reset-term.sh +++ b/t/parallel-tests-reset-term.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-subdir.sh b/t/parallel-tests-subdir.sh index 841f933bb..f775f141a 100644 --- a/t/parallel-tests-subdir.sh +++ b/t/parallel-tests-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parallel-tests-suffix-prog.sh b/t/parallel-tests-suffix-prog.sh index 7b924a33b..b3bc79d65 100644 --- a/t/parallel-tests-suffix-prog.sh +++ b/t/parallel-tests-suffix-prog.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-suffix.sh b/t/parallel-tests-suffix.sh index 2ebb6887e..9505952c0 100644 --- a/t/parallel-tests-suffix.sh +++ b/t/parallel-tests-suffix.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-trailing-whitespace.sh b/t/parallel-tests-trailing-whitespace.sh index 4c64e3a45..539d646e2 100644 --- a/t/parallel-tests-trailing-whitespace.sh +++ b/t/parallel-tests-trailing-whitespace.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/parallel-tests-unreadable.sh b/t/parallel-tests-unreadable.sh index 80db5d18f..3de55de15 100644 --- a/t/parallel-tests-unreadable.sh +++ b/t/parallel-tests-unreadable.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/parse.sh b/t/parse.sh index 03497d480..ddeb1a06a 100644 --- a/t/parse.sh +++ b/t/parse.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/per-target-flags.sh b/t/per-target-flags.sh index d27a24472..7c8571a09 100644 --- a/t/per-target-flags.sh +++ b/t/per-target-flags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/percent.sh b/t/percent.sh index 97e3c4c3d..25dda13db 100644 --- a/t/percent.sh +++ b/t/percent.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/percent2.sh b/t/percent2.sh index 20262c894..b1afbc2b5 100644 --- a/t/percent2.sh +++ b/t/percent2.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/perf/cond.sh b/t/perf/cond.sh index f4df16e45..74952449f 100755 --- a/t/perf/cond.sh +++ b/t/perf/cond.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/perf/testsuite-recheck.sh b/t/perf/testsuite-recheck.sh index a07af5e40..fc15fc8b3 100755 --- a/t/perf/testsuite-recheck.sh +++ b/t/perf/testsuite-recheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/perf/testsuite-summary.sh b/t/perf/testsuite-summary.sh index 8704ef519..212bfe908 100755 --- a/t/perf/testsuite-summary.sh +++ b/t/perf/testsuite-summary.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/phony.sh b/t/phony.sh index a63277618..9dd1890fd 100644 --- a/t/phony.sh +++ b/t/phony.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pkg-config-macros.sh b/t/pkg-config-macros.sh index cfa49cf36..974d992ea 100644 --- a/t/pkg-config-macros.sh +++ b/t/pkg-config-macros.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/pluseq.sh b/t/pluseq.sh index 955ace66d..ecdf18418 100644 --- a/t/pluseq.sh +++ b/t/pluseq.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/pluseq10.sh b/t/pluseq10.sh index deed6e3ef..06009f86e 100644 --- a/t/pluseq10.sh +++ b/t/pluseq10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pluseq11.sh b/t/pluseq11.sh index b2f026dfb..e9683b834 100644 --- a/t/pluseq11.sh +++ b/t/pluseq11.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/pluseq2.sh b/t/pluseq2.sh index 359fa8bd8..7d3bdb003 100644 --- a/t/pluseq2.sh +++ b/t/pluseq2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/pluseq3.sh b/t/pluseq3.sh index f7a075af2..24e3ae40c 100644 --- a/t/pluseq3.sh +++ b/t/pluseq3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/pluseq4.sh b/t/pluseq4.sh index a7be38b27..e5db95c67 100644 --- a/t/pluseq4.sh +++ b/t/pluseq4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/pluseq5.sh b/t/pluseq5.sh index 7b16dbb05..fc32f24f0 100644 --- a/t/pluseq5.sh +++ b/t/pluseq5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/pluseq6.sh b/t/pluseq6.sh index 14db1acb8..7c76aa4fb 100644 --- a/t/pluseq6.sh +++ b/t/pluseq6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/pluseq7.sh b/t/pluseq7.sh index ab639ee83..57a054e2d 100644 --- a/t/pluseq7.sh +++ b/t/pluseq7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/pluseq8.sh b/t/pluseq8.sh index 5816b837d..34c56a739 100644 --- a/t/pluseq8.sh +++ b/t/pluseq8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/pluseq9.sh b/t/pluseq9.sh index 875d4947e..d648ff921 100644 --- a/t/pluseq9.sh +++ b/t/pluseq9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pm/Cond2.pl b/t/pm/Cond2.pl index 415456144..4a912ab2e 100644 --- a/t/pm/Cond2.pl +++ b/t/pm/Cond2.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/pm/Cond3.pl b/t/pm/Cond3.pl index 74d784857..8c7bbf5cf 100644 --- a/t/pm/Cond3.pl +++ b/t/pm/Cond3.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/pm/Condition-t.pl b/t/pm/Condition-t.pl index 59b896806..b52b2a489 100644 --- a/t/pm/Condition-t.pl +++ b/t/pm/Condition-t.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pm/Condition.pl b/t/pm/Condition.pl index 538a0eab9..52d5b1c86 100644 --- a/t/pm/Condition.pl +++ b/t/pm/Condition.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pm/DisjCon2.pl b/t/pm/DisjCon2.pl index 6b7981cf9..bf3773b16 100644 --- a/t/pm/DisjCon2.pl +++ b/t/pm/DisjCon2.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/pm/DisjCon3.pl b/t/pm/DisjCon3.pl index d3f39702f..f121594a5 100644 --- a/t/pm/DisjCon3.pl +++ b/t/pm/DisjCon3.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/pm/DisjConditions-t.pl b/t/pm/DisjConditions-t.pl index e8ffafeb2..1a7cb237a 100644 --- a/t/pm/DisjConditions-t.pl +++ b/t/pm/DisjConditions-t.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pm/DisjConditions.pl b/t/pm/DisjConditions.pl index b17b2f520..a60dc00cd 100644 --- a/t/pm/DisjConditions.pl +++ b/t/pm/DisjConditions.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pm/Version.pl b/t/pm/Version.pl index f9baecc29..247b10cca 100644 --- a/t/pm/Version.pl +++ b/t/pm/Version.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pm/Version2.pl b/t/pm/Version2.pl index 3fb9e00d5..9334e298f 100644 --- a/t/pm/Version2.pl +++ b/t/pm/Version2.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/pm/Version3.pl b/t/pm/Version3.pl index 2524a3245..0c302be7f 100644 --- a/t/pm/Version3.pl +++ b/t/pm/Version3.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/pm/Wrap.pl b/t/pm/Wrap.pl index 4424e8686..ebcba0198 100644 --- a/t/pm/Wrap.pl +++ b/t/pm/Wrap.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/posixsubst-data.sh b/t/posixsubst-data.sh index 367a5eed1..69af3aba1 100644 --- a/t/posixsubst-data.sh +++ b/t/posixsubst-data.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/posixsubst-extradist.sh b/t/posixsubst-extradist.sh index 9d18bceb8..72a19741c 100644 --- a/t/posixsubst-extradist.sh +++ b/t/posixsubst-extradist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/posixsubst-ldadd.sh b/t/posixsubst-ldadd.sh index dda69bd5f..66112fb6e 100644 --- a/t/posixsubst-ldadd.sh +++ b/t/posixsubst-ldadd.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/posixsubst-libraries.sh b/t/posixsubst-libraries.sh index a453f449b..7e319dd50 100644 --- a/t/posixsubst-libraries.sh +++ b/t/posixsubst-libraries.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/posixsubst-ltlibraries.sh b/t/posixsubst-ltlibraries.sh index 738c3428f..b7b53fbce 100644 --- a/t/posixsubst-ltlibraries.sh +++ b/t/posixsubst-ltlibraries.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/posixsubst-programs.sh b/t/posixsubst-programs.sh index 9bb2b5423..ba2e11dfa 100644 --- a/t/posixsubst-programs.sh +++ b/t/posixsubst-programs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/posixsubst-scripts.sh b/t/posixsubst-scripts.sh index 1fd7dddb2..42b042c53 100644 --- a/t/posixsubst-scripts.sh +++ b/t/posixsubst-scripts.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/posixsubst-sources.sh b/t/posixsubst-sources.sh index 472a9dcba..02f959c77 100644 --- a/t/posixsubst-sources.sh +++ b/t/posixsubst-sources.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/posixsubst-tests.sh b/t/posixsubst-tests.sh index a7617c5bc..bec6f2a41 100644 --- a/t/posixsubst-tests.sh +++ b/t/posixsubst-tests.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/postproc.sh b/t/postproc.sh index c28e619f3..3ac64a46d 100644 --- a/t/postproc.sh +++ b/t/postproc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/ppf77.sh b/t/ppf77.sh index a861fa0b5..47f8716da 100644 --- a/t/ppf77.sh +++ b/t/ppf77.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/pr2.sh b/t/pr2.sh index acb3fb863..1204cd7b2 100644 --- a/t/pr2.sh +++ b/t/pr2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/pr211.sh b/t/pr211.sh index 00428f0f3..7afa3ad64 100644 --- a/t/pr211.sh +++ b/t/pr211.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pr220.sh b/t/pr220.sh index 715b5b239..3b11aaa96 100644 --- a/t/pr220.sh +++ b/t/pr220.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pr224.sh b/t/pr224.sh index b6bf6b986..fcea14865 100644 --- a/t/pr224.sh +++ b/t/pr224.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pr229.sh b/t/pr229.sh index 14203aac5..6c6eb43b8 100644 --- a/t/pr229.sh +++ b/t/pr229.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pr243.sh b/t/pr243.sh index 6bcd4eae7..f8a4b4014 100644 --- a/t/pr243.sh +++ b/t/pr243.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pr266.sh b/t/pr266.sh index 3f739abd6..e1f4f3580 100644 --- a/t/pr266.sh +++ b/t/pr266.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pr279-2.sh b/t/pr279-2.sh index 9cdc43b20..b19d5c61d 100644 --- a/t/pr279-2.sh +++ b/t/pr279-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pr279.sh b/t/pr279.sh index 2ed791b49..36d0a9db2 100644 --- a/t/pr279.sh +++ b/t/pr279.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/pr287.sh b/t/pr287.sh index 152c81d68..820f8f358 100644 --- a/t/pr287.sh +++ b/t/pr287.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pr300-lib.sh b/t/pr300-lib.sh index 6b00b8eea..435ad6a68 100644 --- a/t/pr300-lib.sh +++ b/t/pr300-lib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pr300-ltlib.sh b/t/pr300-ltlib.sh index 3994e36e8..73aca0332 100644 --- a/t/pr300-ltlib.sh +++ b/t/pr300-ltlib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pr300-prog.sh b/t/pr300-prog.sh index 25afe54e6..f85f5124c 100644 --- a/t/pr300-prog.sh +++ b/t/pr300-prog.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pr307.sh b/t/pr307.sh index e2cc2566d..fc40554b4 100644 --- a/t/pr307.sh +++ b/t/pr307.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/pr401.sh b/t/pr401.sh index 89094de75..586a7628f 100644 --- a/t/pr401.sh +++ b/t/pr401.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/pr401b.sh b/t/pr401b.sh index cf7a69885..b3559aed4 100644 --- a/t/pr401b.sh +++ b/t/pr401b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/pr401c.sh b/t/pr401c.sh index 22e587629..744b8d5d5 100644 --- a/t/pr401c.sh +++ b/t/pr401c.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/pr72.sh b/t/pr72.sh index 14135956a..e663b5263 100644 --- a/t/pr72.sh +++ b/t/pr72.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/pr87.sh b/t/pr87.sh index b2cb1a0c4..883e473dd 100644 --- a/t/pr87.sh +++ b/t/pr87.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/pr9.sh b/t/pr9.sh index 884fcfeba..cd824cde6 100644 --- a/t/pr9.sh +++ b/t/pr9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/precious.sh b/t/precious.sh index 875030530..c0121411a 100644 --- a/t/precious.sh +++ b/t/precious.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/prefix.sh b/t/prefix.sh index cbb655c24..f7c7378ac 100644 --- a/t/prefix.sh +++ b/t/prefix.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/preproc-basics.sh b/t/preproc-basics.sh index 6000d883c..7465605d1 100644 --- a/t/preproc-basics.sh +++ b/t/preproc-basics.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/preproc-c-compile.sh b/t/preproc-c-compile.sh index 7c398a83e..3d9abda58 100644 --- a/t/preproc-c-compile.sh +++ b/t/preproc-c-compile.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/preproc-demo.sh b/t/preproc-demo.sh index 8d16e929f..dd4e83f73 100644 --- a/t/preproc-demo.sh +++ b/t/preproc-demo.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/preproc-errmsg.sh b/t/preproc-errmsg.sh index 87bcf8161..7bfe16786 100644 --- a/t/preproc-errmsg.sh +++ b/t/preproc-errmsg.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/primary-prefix-couples-documented-valid.sh b/t/primary-prefix-couples-documented-valid.sh index 5be9f5f0a..a0e518573 100644 --- a/t/primary-prefix-couples-documented-valid.sh +++ b/t/primary-prefix-couples-documented-valid.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/primary-prefix-couples-force-valid.sh b/t/primary-prefix-couples-force-valid.sh index cb2be39d9..5309ecaf2 100644 --- a/t/primary-prefix-couples-force-valid.sh +++ b/t/primary-prefix-couples-force-valid.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/primary-prefix-invalid-couples.tap b/t/primary-prefix-invalid-couples.tap index 64f11f833..1f28e72ec 100644 --- a/t/primary-prefix-invalid-couples.tap +++ b/t/primary-prefix-invalid-couples.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/primary-prefix-valid-couples.sh b/t/primary-prefix-valid-couples.sh index 17a2a9b03..11a3434db 100644 --- a/t/primary-prefix-valid-couples.sh +++ b/t/primary-prefix-valid-couples.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/primary.sh b/t/primary.sh index 114af350b..ade1a5ddd 100644 --- a/t/primary.sh +++ b/t/primary.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/primary2.sh b/t/primary2.sh index f9f7671da..9c2ee61dd 100644 --- a/t/primary2.sh +++ b/t/primary2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/primary3.sh b/t/primary3.sh index 0f6d19b58..fe4d5aa23 100644 --- a/t/primary3.sh +++ b/t/primary3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/print-libdir.sh b/t/print-libdir.sh index 3f1c295eb..d552b14b6 100644 --- a/t/print-libdir.sh +++ b/t/print-libdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/proginst.sh b/t/proginst.sh index 4d8efd491..b05c4aa55 100644 --- a/t/proginst.sh +++ b/t/proginst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/programs-primary-rewritten.sh b/t/programs-primary-rewritten.sh index c091e5927..47b50f53b 100644 --- a/t/programs-primary-rewritten.sh +++ b/t/programs-primary-rewritten.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/py-compile-basedir.sh b/t/py-compile-basedir.sh index 2675361ec..408a59a74 100644 --- a/t/py-compile-basedir.sh +++ b/t/py-compile-basedir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/py-compile-basic.sh b/t/py-compile-basic.sh index 440171ea7..b1e7c473c 100644 --- a/t/py-compile-basic.sh +++ b/t/py-compile-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/py-compile-destdir.sh b/t/py-compile-destdir.sh index becd8ace1..3e3ef0e10 100644 --- a/t/py-compile-destdir.sh +++ b/t/py-compile-destdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/py-compile-env.sh b/t/py-compile-env.sh index 2a84127d3..5e0dcbc98 100644 --- a/t/py-compile-env.sh +++ b/t/py-compile-env.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/py-compile-option-terminate.sh b/t/py-compile-option-terminate.sh index ba36afe7d..901046afc 100644 --- a/t/py-compile-option-terminate.sh +++ b/t/py-compile-option-terminate.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/py-compile-usage.sh b/t/py-compile-usage.sh index c52ded6fc..58d5e8e29 100644 --- a/t/py-compile-usage.sh +++ b/t/py-compile-usage.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/python-am-path-iftrue.sh b/t/python-am-path-iftrue.sh index e70f5f964..809e84507 100644 --- a/t/python-am-path-iftrue.sh +++ b/t/python-am-path-iftrue.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/python-dist.sh b/t/python-dist.sh index bca821db9..b298e9207 100644 --- a/t/python-dist.sh +++ b/t/python-dist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/python-missing.sh b/t/python-missing.sh index 66eca9e15..312dae190 100644 --- a/t/python-missing.sh +++ b/t/python-missing.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/python-pr10995.sh b/t/python-pr10995.sh index aa0f00c26..e0a172473 100644 --- a/t/python-pr10995.sh +++ b/t/python-pr10995.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/python-too-old.sh b/t/python-too-old.sh index 0042799fa..35d174403 100644 --- a/t/python-too-old.sh +++ b/t/python-too-old.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/python-vars.sh b/t/python-vars.sh index 6a21a9330..7bf9e7f27 100644 --- a/t/python-vars.sh +++ b/t/python-vars.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/python-virtualenv.sh b/t/python-virtualenv.sh index faf1d5a50..3f05844fa 100644 --- a/t/python-virtualenv.sh +++ b/t/python-virtualenv.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/python.sh b/t/python.sh index 377a9091f..d99f165e7 100644 --- a/t/python.sh +++ b/t/python.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/python10.sh b/t/python10.sh index c44077bf8..f8752752e 100644 --- a/t/python10.sh +++ b/t/python10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/python11.sh b/t/python11.sh index faf09d8ff..804a1a70b 100644 --- a/t/python11.sh +++ b/t/python11.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/python12.sh b/t/python12.sh index e93fcb30f..535c1fc7d 100644 --- a/t/python12.sh +++ b/t/python12.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/python2.sh b/t/python2.sh index 0e986cf47..48ba7abb9 100644 --- a/t/python2.sh +++ b/t/python2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/python3.sh b/t/python3.sh index d2c8797e7..4a8640eff 100644 --- a/t/python3.sh +++ b/t/python3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/recurs-user-deeply-nested.sh b/t/recurs-user-deeply-nested.sh index 396cf0961..bc816adf3 100644 --- a/t/recurs-user-deeply-nested.sh +++ b/t/recurs-user-deeply-nested.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user-indir.sh b/t/recurs-user-indir.sh index cfdf6d530..ced6efc23 100644 --- a/t/recurs-user-indir.sh +++ b/t/recurs-user-indir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user-keep-going.sh b/t/recurs-user-keep-going.sh index cccae99e1..9d43602fb 100644 --- a/t/recurs-user-keep-going.sh +++ b/t/recurs-user-keep-going.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user-many.sh b/t/recurs-user-many.sh index 05990045e..d1fc00416 100644 --- a/t/recurs-user-many.sh +++ b/t/recurs-user-many.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user-no-subdirs.sh b/t/recurs-user-no-subdirs.sh index 9f8c8b6e3..8f0169598 100644 --- a/t/recurs-user-no-subdirs.sh +++ b/t/recurs-user-no-subdirs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user-no-top-level.sh b/t/recurs-user-no-top-level.sh index 8de3ec2cb..f88e03e7c 100644 --- a/t/recurs-user-no-top-level.sh +++ b/t/recurs-user-no-top-level.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user-override.sh b/t/recurs-user-override.sh index b551df48a..2bb00a9ad 100644 --- a/t/recurs-user-override.sh +++ b/t/recurs-user-override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user-phony.sh b/t/recurs-user-phony.sh index c01ba5246..00d9d6594 100644 --- a/t/recurs-user-phony.sh +++ b/t/recurs-user-phony.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user-wrap.sh b/t/recurs-user-wrap.sh index 187189afc..8acd32ccb 100644 --- a/t/recurs-user-wrap.sh +++ b/t/recurs-user-wrap.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user.sh b/t/recurs-user.sh index 00112ac25..123f49505 100644 --- a/t/recurs-user.sh +++ b/t/recurs-user.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/recurs-user2.sh b/t/recurs-user2.sh index 1a85da65a..c17071266 100644 --- a/t/recurs-user2.sh +++ b/t/recurs-user2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/relativize.tap b/t/relativize.tap index 5839e6e37..7c8d26ceb 100644 --- a/t/relativize.tap +++ b/t/relativize.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/remake-aclocal-version-mismatch.sh b/t/remake-aclocal-version-mismatch.sh index 6da7bad5b..def3f828c 100644 --- a/t/remake-aclocal-version-mismatch.sh +++ b/t/remake-aclocal-version-mismatch.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/remake-after-acinclude-m4.sh b/t/remake-after-acinclude-m4.sh index 6bf48ec39..8f04dc751 100644 --- a/t/remake-after-acinclude-m4.sh +++ b/t/remake-after-acinclude-m4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-after-aclocal-m4.sh b/t/remake-after-aclocal-m4.sh index 60f49b776..4116b3159 100644 --- a/t/remake-after-aclocal-m4.sh +++ b/t/remake-after-aclocal-m4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-after-configure-ac.sh b/t/remake-after-configure-ac.sh index 5322b85c4..556b353ea 100644 --- a/t/remake-after-configure-ac.sh +++ b/t/remake-after-configure-ac.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-after-makefile-am.sh b/t/remake-after-makefile-am.sh index 0b12680c6..ebe729cdb 100644 --- a/t/remake-after-makefile-am.sh +++ b/t/remake-after-makefile-am.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-all-1.sh b/t/remake-all-1.sh index b4ff3778f..3c0a857bb 100644 --- a/t/remake-all-1.sh +++ b/t/remake-all-1.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-all-2.sh b/t/remake-all-2.sh index 8f616ba8a..c0b915eea 100644 --- a/t/remake-all-2.sh +++ b/t/remake-all-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-am-pr10111.sh b/t/remake-am-pr10111.sh index 1514207cf..40559d594 100644 --- a/t/remake-am-pr10111.sh +++ b/t/remake-am-pr10111.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-config-status-dependencies.sh b/t/remake-config-status-dependencies.sh index c625661bf..5193de517 100644 --- a/t/remake-config-status-dependencies.sh +++ b/t/remake-config-status-dependencies.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/remake-configure-dependencies.sh b/t/remake-configure-dependencies.sh index d81d881c5..90d3d41fc 100644 --- a/t/remake-configure-dependencies.sh +++ b/t/remake-configure-dependencies.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/remake-deeply-nested.sh b/t/remake-deeply-nested.sh index e054c204a..8be462457 100644 --- a/t/remake-deeply-nested.sh +++ b/t/remake-deeply-nested.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-deleted-am-2.sh b/t/remake-deleted-am-2.sh index 8a316eea2..17c2278d6 100644 --- a/t/remake-deleted-am-2.sh +++ b/t/remake-deleted-am-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-deleted-am-subdir.sh b/t/remake-deleted-am-subdir.sh index 488e26950..90b1fad63 100644 --- a/t/remake-deleted-am-subdir.sh +++ b/t/remake-deleted-am-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-deleted-am.sh b/t/remake-deleted-am.sh index 1216c12fd..842103f05 100644 --- a/t/remake-deleted-am.sh +++ b/t/remake-deleted-am.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-deleted-m4-file.sh b/t/remake-deleted-m4-file.sh index 18c481cc8..1da727814 100644 --- a/t/remake-deleted-m4-file.sh +++ b/t/remake-deleted-m4-file.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-fail.sh b/t/remake-fail.sh index cc9530103..4818ab689 100644 --- a/t/remake-fail.sh +++ b/t/remake-fail.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/remake-gnulib-add-acsubst.sh b/t/remake-gnulib-add-acsubst.sh index 38dd38f33..46d832598 100644 --- a/t/remake-gnulib-add-acsubst.sh +++ b/t/remake-gnulib-add-acsubst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-gnulib-add-header.sh b/t/remake-gnulib-add-header.sh index 82a08e2cf..9c762889d 100644 --- a/t/remake-gnulib-add-header.sh +++ b/t/remake-gnulib-add-header.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-gnulib-remove-header.sh b/t/remake-gnulib-remove-header.sh index 15479a2f4..73ae9693d 100644 --- a/t/remake-gnulib-remove-header.sh +++ b/t/remake-gnulib-remove-header.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-include-aclocal.sh b/t/remake-include-aclocal.sh index 191f5680a..f0eb9065a 100644 --- a/t/remake-include-aclocal.sh +++ b/t/remake-include-aclocal.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-include-configure.sh b/t/remake-include-configure.sh index 7fe06d2a4..bca3c3b62 100644 --- a/t/remake-include-configure.sh +++ b/t/remake-include-configure.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-include-makefile.sh b/t/remake-include-makefile.sh index ad0fd358a..62231a003 100644 --- a/t/remake-include-makefile.sh +++ b/t/remake-include-makefile.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-m4-pr10111.sh b/t/remake-m4-pr10111.sh index be0d42cd1..84cc0947e 100644 --- a/t/remake-m4-pr10111.sh +++ b/t/remake-m4-pr10111.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-macrodir.sh b/t/remake-macrodir.sh index c736e2688..176136d24 100644 --- a/t/remake-macrodir.sh +++ b/t/remake-macrodir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/remake-maintainer-mode.sh b/t/remake-maintainer-mode.sh index 52b6f25f6..818fcc98b 100644 --- a/t/remake-maintainer-mode.sh +++ b/t/remake-maintainer-mode.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/remake-makefile-intree.sh b/t/remake-makefile-intree.sh index 9aa9141bc..cdbb6041f 100644 --- a/t/remake-makefile-intree.sh +++ b/t/remake-makefile-intree.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-makefile-vpath.sh b/t/remake-makefile-vpath.sh index b70619cef..d91ca5cb7 100644 --- a/t/remake-makefile-vpath.sh +++ b/t/remake-makefile-vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-mild-stress.sh b/t/remake-mild-stress.sh index 821c6f9d9..da239e27f 100644 --- a/t/remake-mild-stress.sh +++ b/t/remake-mild-stress.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-moved-m4-file.sh b/t/remake-moved-m4-file.sh index e8b4ea19d..2a9e7369c 100644 --- a/t/remake-moved-m4-file.sh +++ b/t/remake-moved-m4-file.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-not-after-make-dist.sh b/t/remake-not-after-make-dist.sh index fe75cfab4..d446f6b42 100644 --- a/t/remake-not-after-make-dist.sh +++ b/t/remake-not-after-make-dist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/remake-recurs-user.sh b/t/remake-recurs-user.sh index 92200e4af..a9c00102c 100644 --- a/t/remake-recurs-user.sh +++ b/t/remake-recurs-user.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/remake-renamed-am.sh b/t/remake-renamed-am.sh index 82b0b3d79..b4f69756b 100644 --- a/t/remake-renamed-am.sh +++ b/t/remake-renamed-am.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-renamed-m4-file.sh b/t/remake-renamed-m4-file.sh index 6ca5afff9..1f18d6835 100644 --- a/t/remake-renamed-m4-file.sh +++ b/t/remake-renamed-m4-file.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-renamed-m4-macro-and-file.sh b/t/remake-renamed-m4-macro-and-file.sh index 9cd3bc995..68305b65e 100644 --- a/t/remake-renamed-m4-macro-and-file.sh +++ b/t/remake-renamed-m4-macro-and-file.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-renamed-m4-macro.sh b/t/remake-renamed-m4-macro.sh index f83c77685..4753835f4 100644 --- a/t/remake-renamed-m4-macro.sh +++ b/t/remake-renamed-m4-macro.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-subdir-from-subdir.sh b/t/remake-subdir-from-subdir.sh index 024cc897a..d4a4f58be 100644 --- a/t/remake-subdir-from-subdir.sh +++ b/t/remake-subdir-from-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/remake-subdir-gnu.sh b/t/remake-subdir-gnu.sh index 0817050ae..067a845e9 100644 --- a/t/remake-subdir-gnu.sh +++ b/t/remake-subdir-gnu.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-subdir-grepping.sh b/t/remake-subdir-grepping.sh index df1c5e700..67c5bbea3 100644 --- a/t/remake-subdir-grepping.sh +++ b/t/remake-subdir-grepping.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/remake-subdir-long-time.sh b/t/remake-subdir-long-time.sh index cf03335c6..2d8aa65f0 100644 --- a/t/remake-subdir-long-time.sh +++ b/t/remake-subdir-long-time.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-subdir-no-makefile.sh b/t/remake-subdir-no-makefile.sh index 71f1ebf31..d26bb6fe7 100644 --- a/t/remake-subdir-no-makefile.sh +++ b/t/remake-subdir-no-makefile.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-subdir-only.sh b/t/remake-subdir-only.sh index c3987da51..ad2f11af9 100644 --- a/t/remake-subdir-only.sh +++ b/t/remake-subdir-only.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/remake-subdir.sh b/t/remake-subdir.sh index 89ff3d2b7..442ec5024 100644 --- a/t/remake-subdir.sh +++ b/t/remake-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-subdir2.sh b/t/remake-subdir2.sh index 0eac565db..128e66b3e 100644 --- a/t/remake-subdir2.sh +++ b/t/remake-subdir2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/remake-subdir3.sh b/t/remake-subdir3.sh index eb2851dd8..e1290bc5e 100644 --- a/t/remake-subdir3.sh +++ b/t/remake-subdir3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/remake-timing-bug-pr8365.sh b/t/remake-timing-bug-pr8365.sh index 5060fd6bf..4d3eb66c6 100644 --- a/t/remake-timing-bug-pr8365.sh +++ b/t/remake-timing-bug-pr8365.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/repeated-options.sh b/t/repeated-options.sh index 95963c547..c2be7b639 100644 --- a/t/repeated-options.sh +++ b/t/repeated-options.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/reqd2.sh b/t/reqd2.sh index 5cefd4fee..97c0d06b2 100644 --- a/t/reqd2.sh +++ b/t/reqd2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/rm-f-probe.sh b/t/rm-f-probe.sh index 1cb220aa0..d1962c57e 100644 --- a/t/rm-f-probe.sh +++ b/t/rm-f-probe.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/rulepat.sh b/t/rulepat.sh index 9255bedaf..6e463b607 100644 --- a/t/rulepat.sh +++ b/t/rulepat.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/sanity.sh b/t/sanity.sh index 60daeec14..14c6b2f53 100644 --- a/t/sanity.sh +++ b/t/sanity.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/seenc.sh b/t/seenc.sh index 3106e3540..dacacf819 100644 --- a/t/seenc.sh +++ b/t/seenc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/self-check-cc-no-c-o.sh b/t/self-check-cc-no-c-o.sh index 69809b77f..c7a6e01c3 100644 --- a/t/self-check-cc-no-c-o.sh +++ b/t/self-check-cc-no-c-o.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/self-check-configure-help.sh b/t/self-check-configure-help.sh index 8aa4f3915..4634350d2 100644 --- a/t/self-check-configure-help.sh +++ b/t/self-check-configure-help.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-dir.tap b/t/self-check-dir.tap index 68e9edf18..4ab606910 100644 --- a/t/self-check-dir.tap +++ b/t/self-check-dir.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-exit.tap b/t/self-check-exit.tap index d0ee0269e..11368d149 100644 --- a/t/self-check-exit.tap +++ b/t/self-check-exit.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-explicit-skips.sh b/t/self-check-explicit-skips.sh index ba36450bd..5e1ea70f5 100644 --- a/t/self-check-explicit-skips.sh +++ b/t/self-check-explicit-skips.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-is-blocked-signal.tap b/t/self-check-is-blocked-signal.tap index e3826590a..59d5c0179 100644 --- a/t/self-check-is-blocked-signal.tap +++ b/t/self-check-is-blocked-signal.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-is_newest.tap b/t/self-check-is_newest.tap index de1dd669b..8a4f30cbb 100644 --- a/t/self-check-is_newest.tap +++ b/t/self-check-is_newest.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-me.tap b/t/self-check-me.tap index b2b24f9c5..2f380b005 100644 --- a/t/self-check-me.tap +++ b/t/self-check-me.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-report.sh b/t/self-check-report.sh index 99b98387b..0949065b2 100644 --- a/t/self-check-report.sh +++ b/t/self-check-report.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-seq.tap b/t/self-check-seq.tap index 4e9d58f75..b3784ec32 100644 --- a/t/self-check-seq.tap +++ b/t/self-check-seq.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/self-check-shell-no-trail-bslash.sh b/t/self-check-shell-no-trail-bslash.sh index 14ee02cdf..8c9d38ed9 100644 --- a/t/self-check-shell-no-trail-bslash.sh +++ b/t/self-check-shell-no-trail-bslash.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/self-check-unindent.tap b/t/self-check-unindent.tap index ed96993db..08ac847ee 100644 --- a/t/self-check-unindent.tap +++ b/t/self-check-unindent.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/serial-tests.sh b/t/serial-tests.sh index f0759b9ad..78f379455 100644 --- a/t/serial-tests.sh +++ b/t/serial-tests.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/silent-c.sh b/t/silent-c.sh index 52a386211..d27732278 100644 --- a/t/silent-c.sh +++ b/t/silent-c.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/silent-configsite.sh b/t/silent-configsite.sh index 6146533d9..12f5d39a5 100644 --- a/t/silent-configsite.sh +++ b/t/silent-configsite.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/silent-custom.sh b/t/silent-custom.sh index b00e388b1..fd7de170a 100644 --- a/t/silent-custom.sh +++ b/t/silent-custom.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/silent-cxx.sh b/t/silent-cxx.sh index 00203c228..46f1878c5 100644 --- a/t/silent-cxx.sh +++ b/t/silent-cxx.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/silent-f77.sh b/t/silent-f77.sh index 8197292b4..049494d85 100644 --- a/t/silent-f77.sh +++ b/t/silent-f77.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/silent-f90.sh b/t/silent-f90.sh index f319a1a89..395f5d16e 100644 --- a/t/silent-f90.sh +++ b/t/silent-f90.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/silent-gen.sh b/t/silent-gen.sh index ac49f2b35..971cff14e 100644 --- a/t/silent-gen.sh +++ b/t/silent-gen.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/silent-lex.sh b/t/silent-lex.sh index 3bfc40029..e087b1f27 100644 --- a/t/silent-lex.sh +++ b/t/silent-lex.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/silent-lt.sh b/t/silent-lt.sh index 69a7d609b..72edf8a03 100644 --- a/t/silent-lt.sh +++ b/t/silent-lt.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/silent-many-languages.sh b/t/silent-many-languages.sh index 4018ff2e9..da3c8b5e5 100644 --- a/t/silent-many-languages.sh +++ b/t/silent-many-languages.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/silent-nested-vars.sh b/t/silent-nested-vars.sh index 4a5f63122..5d17a18f6 100644 --- a/t/silent-nested-vars.sh +++ b/t/silent-nested-vars.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/silent-texi.sh b/t/silent-texi.sh index dc425a877..f6d06d9cc 100644 --- a/t/silent-texi.sh +++ b/t/silent-texi.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/silent-yacc-headers.sh b/t/silent-yacc-headers.sh index 837b10e9f..8eb50b9d5 100644 --- a/t/silent-yacc-headers.sh +++ b/t/silent-yacc-headers.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/silent-yacc.sh b/t/silent-yacc.sh index cbe21d4fb..ec8058fdb 100644 --- a/t/silent-yacc.sh +++ b/t/silent-yacc.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/sourcefile-in-subdir.sh b/t/sourcefile-in-subdir.sh index 1054f18aa..3335c08c2 100644 --- a/t/sourcefile-in-subdir.sh +++ b/t/sourcefile-in-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/space.sh b/t/space.sh index 43507fec8..d6a242ab3 100644 --- a/t/space.sh +++ b/t/space.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/specflg-dummy.sh b/t/specflg-dummy.sh index c1b9cd5ce..f0533a8e2 100644 --- a/t/specflg-dummy.sh +++ b/t/specflg-dummy.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/specflg6.sh b/t/specflg6.sh index 8178b3446..30beece9c 100644 --- a/t/specflg6.sh +++ b/t/specflg6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/specflg7.sh b/t/specflg7.sh index 0a40b5deb..3a70d8ef5 100644 --- a/t/specflg7.sh +++ b/t/specflg7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/specflg8.sh b/t/specflg8.sh index 5e51053ce..54e369401 100644 --- a/t/specflg8.sh +++ b/t/specflg8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/specflg9.sh b/t/specflg9.sh index 4f3d3b0c2..f1320e211 100644 --- a/t/specflg9.sh +++ b/t/specflg9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/spell.sh b/t/spell.sh index 6c46577f0..3d678d1f1 100644 --- a/t/spell.sh +++ b/t/spell.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/spell2.sh b/t/spell2.sh index 365d74f76..bf262f9f1 100644 --- a/t/spell2.sh +++ b/t/spell2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/spell3.sh b/t/spell3.sh index 35403ccad..231062fdd 100644 --- a/t/spell3.sh +++ b/t/spell3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/spelling.sh b/t/spelling.sh index 7410aea58..ec3e3dec9 100644 --- a/t/spelling.sh +++ b/t/spelling.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/spy-double-colon.sh b/t/spy-double-colon.sh index 6ca3d0f77..4e5ba7a54 100644 --- a/t/spy-double-colon.sh +++ b/t/spy-double-colon.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/spy-rm.tap b/t/spy-rm.tap index 3b8dd2d10..efaaa8cdd 100644 --- a/t/spy-rm.tap +++ b/t/spy-rm.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/src-acsubst.sh b/t/src-acsubst.sh index b013f5847..9cf34a21d 100644 --- a/t/src-acsubst.sh +++ b/t/src-acsubst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/stamph2.sh b/t/stamph2.sh index 60349c5e8..f855f5642 100644 --- a/t/stamph2.sh +++ b/t/stamph2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/stdinc.sh b/t/stdinc.sh index 947313c03..90a918e64 100644 --- a/t/stdinc.sh +++ b/t/stdinc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2007-2013 Free Software Foundation, Inc. +# Copyright (C) 2007-2014 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 diff --git a/t/stdlib.sh b/t/stdlib.sh index 887b3871b..784102cb6 100644 --- a/t/stdlib.sh +++ b/t/stdlib.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/stdlib2.sh b/t/stdlib2.sh index a16e7847d..70f8ec1d9 100644 --- a/t/stdlib2.sh +++ b/t/stdlib2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/strictness-override.sh b/t/strictness-override.sh index 98451ce1d..5ca6017c7 100644 --- a/t/strictness-override.sh +++ b/t/strictness-override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/strictness-precedence.sh b/t/strictness-precedence.sh index f578d04f9..9d14de4db 100644 --- a/t/strictness-precedence.sh +++ b/t/strictness-precedence.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/strip.sh b/t/strip.sh index 9c9998d1c..6a1ebe332 100644 --- a/t/strip.sh +++ b/t/strip.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/strip2.sh b/t/strip2.sh index 63d3c4010..2f32b505b 100644 --- a/t/strip2.sh +++ b/t/strip2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/strip3.sh b/t/strip3.sh index 97f9e3ef9..f5071d42b 100644 --- a/t/strip3.sh +++ b/t/strip3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/subdir-ac-subst.sh b/t/subdir-ac-subst.sh index d3f50bc92..aae3c84f7 100644 --- a/t/subdir-ac-subst.sh +++ b/t/subdir-ac-subst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/subdir-add-pr46.sh b/t/subdir-add-pr46.sh index e2c58ce32..be4fc4425 100644 --- a/t/subdir-add-pr46.sh +++ b/t/subdir-add-pr46.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/subdir-add2-pr46.sh b/t/subdir-add2-pr46.sh index 5f5f0b361..1fc8693f5 100644 --- a/t/subdir-add2-pr46.sh +++ b/t/subdir-add2-pr46.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/subdir-am-cond.sh b/t/subdir-am-cond.sh index 8a36bc36d..73dba483a 100644 --- a/t/subdir-am-cond.sh +++ b/t/subdir-am-cond.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/subdir-cond-err.sh b/t/subdir-cond-err.sh index 19bd15332..98aeb61ad 100644 --- a/t/subdir-cond-err.sh +++ b/t/subdir-cond-err.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/subdir-cond-gettext.sh b/t/subdir-cond-gettext.sh index 60a62ab87..8cf54b68a 100644 --- a/t/subdir-cond-gettext.sh +++ b/t/subdir-cond-gettext.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/subdir-distclean.sh b/t/subdir-distclean.sh index 1274b2a44..2a646e920 100644 --- a/t/subdir-distclean.sh +++ b/t/subdir-distclean.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/subdir-env-interference.sh b/t/subdir-env-interference.sh index 9c349e15f..fa54f406d 100644 --- a/t/subdir-env-interference.sh +++ b/t/subdir-env-interference.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/subdir-keep-going-pr12554.sh b/t/subdir-keep-going-pr12554.sh index 03d5cb048..b694039b9 100644 --- a/t/subdir-keep-going-pr12554.sh +++ b/t/subdir-keep-going-pr12554.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/subdir-order.sh b/t/subdir-order.sh index 6e25e520e..8f2d97764 100644 --- a/t/subdir-order.sh +++ b/t/subdir-order.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/subdir-subsub.sh b/t/subdir-subsub.sh index e2f44c7c5..6bc9852e7 100644 --- a/t/subdir-subsub.sh +++ b/t/subdir-subsub.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/subdir-with-slash.sh b/t/subdir-with-slash.sh index 17dca91a3..cc8759723 100644 --- a/t/subdir-with-slash.sh +++ b/t/subdir-with-slash.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/subdir.sh b/t/subdir.sh index b9ef78967..a26bc761e 100644 --- a/t/subdir.sh +++ b/t/subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/subobj-clean-lt-pr10697.sh b/t/subobj-clean-lt-pr10697.sh index 053ce4177..c44deab99 100644 --- a/t/subobj-clean-lt-pr10697.sh +++ b/t/subobj-clean-lt-pr10697.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/subobj-clean-pr10697.sh b/t/subobj-clean-pr10697.sh index e244e3d79..bf1d89fea 100644 --- a/t/subobj-clean-pr10697.sh +++ b/t/subobj-clean-pr10697.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/subobj-indir-pr13928.sh b/t/subobj-indir-pr13928.sh index 11b865c8e..22cb7f5ea 100644 --- a/t/subobj-indir-pr13928.sh +++ b/t/subobj-indir-pr13928.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/subobj-vpath-pr13928.sh b/t/subobj-vpath-pr13928.sh index 96cb219d8..9c78d2e44 100644 --- a/t/subobj-vpath-pr13928.sh +++ b/t/subobj-vpath-pr13928.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/subobj.sh b/t/subobj.sh index f595e68ad..2b20be998 100644 --- a/t/subobj.sh +++ b/t/subobj.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/subobj10.sh b/t/subobj10.sh index f3181d173..a9dd2ec2c 100644 --- a/t/subobj10.sh +++ b/t/subobj10.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/subobj11a.sh b/t/subobj11a.sh index 2ff04b567..f149c6863 100644 --- a/t/subobj11a.sh +++ b/t/subobj11a.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/subobj11b.sh b/t/subobj11b.sh index deaa2b68e..5ebb42a7f 100644 --- a/t/subobj11b.sh +++ b/t/subobj11b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/subobj11c.sh b/t/subobj11c.sh index 7476e47c0..a80d760ac 100644 --- a/t/subobj11c.sh +++ b/t/subobj11c.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/subobj2.sh b/t/subobj2.sh index 0d99910e5..3b7715c8b 100644 --- a/t/subobj2.sh +++ b/t/subobj2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/subobj4.sh b/t/subobj4.sh index dbbed30be..dfbe5f439 100644 --- a/t/subobj4.sh +++ b/t/subobj4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/subobj5.sh b/t/subobj5.sh index 485142354..d9bb00da2 100644 --- a/t/subobj5.sh +++ b/t/subobj5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/subobj6.sh b/t/subobj6.sh index 0e7aa86b6..4a0c4a144 100644 --- a/t/subobj6.sh +++ b/t/subobj6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/subobj7.sh b/t/subobj7.sh index de73cc2dc..15bbd7554 100644 --- a/t/subobj7.sh +++ b/t/subobj7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/subobj8.sh b/t/subobj8.sh index dd03008bf..c35abc635 100644 --- a/t/subobj8.sh +++ b/t/subobj8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/subobj9.sh b/t/subobj9.sh index 9fe4f7ac8..4ca559bf7 100644 --- a/t/subobj9.sh +++ b/t/subobj9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/subobjname.sh b/t/subobjname.sh index 515d3d7e0..9351f5178 100644 --- a/t/subobjname.sh +++ b/t/subobjname.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/subpkg-macrodir.sh b/t/subpkg-macrodir.sh index 275a32cd7..0df5f6f0e 100644 --- a/t/subpkg-macrodir.sh +++ b/t/subpkg-macrodir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/subpkg-yacc.sh b/t/subpkg-yacc.sh index 9fc676190..f7c1759e6 100644 --- a/t/subpkg-yacc.sh +++ b/t/subpkg-yacc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/subpkg.sh b/t/subpkg.sh index 2b3d163a0..7aceb01b0 100644 --- a/t/subpkg.sh +++ b/t/subpkg.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/subpkg2.sh b/t/subpkg2.sh index 7800ad003..cc1b48a0f 100644 --- a/t/subpkg2.sh +++ b/t/subpkg2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/subpkg3.sh b/t/subpkg3.sh index 4b85c1390..bd1d459e0 100644 --- a/t/subpkg3.sh +++ b/t/subpkg3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/subpkg4.sh b/t/subpkg4.sh index e28e79507..6f99fcb22 100644 --- a/t/subpkg4.sh +++ b/t/subpkg4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/subst-no-trailing-empty-line.sh b/t/subst-no-trailing-empty-line.sh index b057d9510..f63fd1415 100644 --- a/t/subst-no-trailing-empty-line.sh +++ b/t/subst-no-trailing-empty-line.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/subst.sh b/t/subst.sh index a7ebe7dcf..ac7c510fb 100644 --- a/t/subst.sh +++ b/t/subst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/subst3.sh b/t/subst3.sh index 3654b83f7..75c63dfd8 100644 --- a/t/subst3.sh +++ b/t/subst3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/subst4.sh b/t/subst4.sh index 1034affea..8f2235cda 100644 --- a/t/subst4.sh +++ b/t/subst4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/subst5.sh b/t/subst5.sh index dd0a4e73f..d00ba9e67 100644 --- a/t/subst5.sh +++ b/t/subst5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/substre2.sh b/t/substre2.sh index 39f4f2c52..92ba5b486 100644 --- a/t/substre2.sh +++ b/t/substre2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/substref.sh b/t/substref.sh index 1079a0906..30c771a9d 100644 --- a/t/substref.sh +++ b/t/substref.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/substtarg.sh b/t/substtarg.sh index fed1ba9c3..c085b91ff 100644 --- a/t/substtarg.sh +++ b/t/substtarg.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/suffix-chain.tap b/t/suffix-chain.tap index 9af45f20c..d514b1fa7 100644 --- a/t/suffix-chain.tap +++ b/t/suffix-chain.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/suffix-custom-pr14441.sh b/t/suffix-custom-pr14441.sh index 508f2e067..2d7264124 100644 --- a/t/suffix-custom-pr14441.sh +++ b/t/suffix-custom-pr14441.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/suffix-custom-subobj-and-specflg.sh b/t/suffix-custom-subobj-and-specflg.sh index b862d8825..3741c00ee 100644 --- a/t/suffix-custom-subobj-and-specflg.sh +++ b/t/suffix-custom-subobj-and-specflg.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/suffix-custom-subobj.sh b/t/suffix-custom-subobj.sh index 6c012297b..028217aee 100644 --- a/t/suffix-custom-subobj.sh +++ b/t/suffix-custom-subobj.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/suffix-extra-c-stuff-pr14560.sh b/t/suffix-extra-c-stuff-pr14560.sh index 45fdd1774..16cb96ca0 100644 --- a/t/suffix-extra-c-stuff-pr14560.sh +++ b/t/suffix-extra-c-stuff-pr14560.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/suffix.sh b/t/suffix.sh index 11bb55f7c..24f6fcbd0 100644 --- a/t/suffix.sh +++ b/t/suffix.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/suffix10.tap b/t/suffix10.tap index b4fd3d80f..830c3ab73 100644 --- a/t/suffix10.tap +++ b/t/suffix10.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/suffix11.tap b/t/suffix11.tap index 5ee21af4b..2ee3dd981 100644 --- a/t/suffix11.tap +++ b/t/suffix11.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/suffix2.sh b/t/suffix2.sh index 3c8e1a5b0..ce8d7c94c 100644 --- a/t/suffix2.sh +++ b/t/suffix2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/suffix3.tap b/t/suffix3.tap index 620c3e45d..62716f0c8 100644 --- a/t/suffix3.tap +++ b/t/suffix3.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/suffix4.sh b/t/suffix4.sh index 59c364ada..ae811f3c8 100644 --- a/t/suffix4.sh +++ b/t/suffix4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/suffix5.sh b/t/suffix5.sh index 6a2700a42..769766b08 100644 --- a/t/suffix5.sh +++ b/t/suffix5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/suffix6.sh b/t/suffix6.sh index 923613059..71f7df4e5 100644 --- a/t/suffix6.sh +++ b/t/suffix6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/suffix6b.sh b/t/suffix6b.sh index 08fd95260..f368a7f27 100644 --- a/t/suffix6b.sh +++ b/t/suffix6b.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/suffix6c.sh b/t/suffix6c.sh index 319b64942..6d672579f 100644 --- a/t/suffix6c.sh +++ b/t/suffix6c.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/suffix7.sh b/t/suffix7.sh index be730e141..df808f093 100644 --- a/t/suffix7.sh +++ b/t/suffix7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/suffix8.tap b/t/suffix8.tap index 12df48bf4..71e608f1c 100644 --- a/t/suffix8.tap +++ b/t/suffix8.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/suffix9.sh b/t/suffix9.sh index 4c3db1563..4fc344081 100644 --- a/t/suffix9.sh +++ b/t/suffix9.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/symlink.sh b/t/symlink.sh index 86b8d5b7c..7cc88cead 100644 --- a/t/symlink.sh +++ b/t/symlink.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/symlink2.sh b/t/symlink2.sh index af88cab10..f8a687f41 100644 --- a/t/symlink2.sh +++ b/t/symlink2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/syntax.sh b/t/syntax.sh index c8a81e7f8..d52c27fc7 100644 --- a/t/syntax.sh +++ b/t/syntax.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/tags-pr12372.sh b/t/tags-pr12372.sh index 6cf6e6e30..b1b6b6a8d 100644 --- a/t/tags-pr12372.sh +++ b/t/tags-pr12372.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/tags.sh b/t/tags.sh index 30a43d86f..f7da4a98d 100644 --- a/t/tags.sh +++ b/t/tags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/tags2.sh b/t/tags2.sh index f98fb2264..47b55163e 100644 --- a/t/tags2.sh +++ b/t/tags2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/tagsub.sh b/t/tagsub.sh index aa2b96be5..e096a4c6a 100644 --- a/t/tagsub.sh +++ b/t/tagsub.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/tap-ambiguous-directive.sh b/t/tap-ambiguous-directive.sh index 500a4830d..b50d6103a 100644 --- a/t/tap-ambiguous-directive.sh +++ b/t/tap-ambiguous-directive.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-autonumber.sh b/t/tap-autonumber.sh index d89aa789f..a06fecafd 100644 --- a/t/tap-autonumber.sh +++ b/t/tap-autonumber.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-bad-prog.tap b/t/tap-bad-prog.tap index 9225c38ed..34fa29391 100644 --- a/t/tap-bad-prog.tap +++ b/t/tap-bad-prog.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-bailout-and-logging.sh b/t/tap-bailout-and-logging.sh index 9ac565735..685c25ecc 100644 --- a/t/tap-bailout-and-logging.sh +++ b/t/tap-bailout-and-logging.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-bailout-leading-space.sh b/t/tap-bailout-leading-space.sh index 7a55a1fba..74bbe014d 100644 --- a/t/tap-bailout-leading-space.sh +++ b/t/tap-bailout-leading-space.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-bailout-suppress-badexit.sh b/t/tap-bailout-suppress-badexit.sh index 8f5fb15fd..67fe56851 100644 --- a/t/tap-bailout-suppress-badexit.sh +++ b/t/tap-bailout-suppress-badexit.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-bailout-suppress-later-diagnostic.sh b/t/tap-bailout-suppress-later-diagnostic.sh index 730e461c4..990d8fb3e 100644 --- a/t/tap-bailout-suppress-later-diagnostic.sh +++ b/t/tap-bailout-suppress-later-diagnostic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-bailout-suppress-later-errors.sh b/t/tap-bailout-suppress-later-errors.sh index 365e8945a..75ec77521 100644 --- a/t/tap-bailout-suppress-later-errors.sh +++ b/t/tap-bailout-suppress-later-errors.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-bailout.sh b/t/tap-bailout.sh index 94100f4c1..2bbdc9829 100644 --- a/t/tap-bailout.sh +++ b/t/tap-bailout.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-basic.sh b/t/tap-basic.sh index b2b01ba30..4aa859742 100644 --- a/t/tap-basic.sh +++ b/t/tap-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-color.sh b/t/tap-color.sh index 409663ebc..bc5a8b566 100644 --- a/t/tap-color.sh +++ b/t/tap-color.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-common-setup.sh b/t/tap-common-setup.sh index 479fc901f..a6571299d 100644 --- a/t/tap-common-setup.sh +++ b/t/tap-common-setup.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-deps.sh b/t/tap-deps.sh index a9446bf1f..83944c5bf 100644 --- a/t/tap-deps.sh +++ b/t/tap-deps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-diagnostic-custom.sh b/t/tap-diagnostic-custom.sh index d49e93fd2..0a65a39cc 100644 --- a/t/tap-diagnostic-custom.sh +++ b/t/tap-diagnostic-custom.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-diagnostic.sh b/t/tap-diagnostic.sh index 23efdd4ba..426628c55 100644 --- a/t/tap-diagnostic.sh +++ b/t/tap-diagnostic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-doc.sh b/t/tap-doc.sh index ef2ab9370..05735d43c 100644 --- a/t/tap-doc.sh +++ b/t/tap-doc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-doc2.sh b/t/tap-doc2.sh index d260d9a08..939db3be7 100644 --- a/t/tap-doc2.sh +++ b/t/tap-doc2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-driver-stderr.sh b/t/tap-driver-stderr.sh index 32799b7f8..58c3b05dc 100644 --- a/t/tap-driver-stderr.sh +++ b/t/tap-driver-stderr.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-empty-diagnostic.sh b/t/tap-empty-diagnostic.sh index 68a51c1a3..374dfb335 100644 --- a/t/tap-empty-diagnostic.sh +++ b/t/tap-empty-diagnostic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-empty.sh b/t/tap-empty.sh index ec1e909f5..4fd095206 100644 --- a/t/tap-empty.sh +++ b/t/tap-empty.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-escape-directive-2.sh b/t/tap-escape-directive-2.sh index 63caafdc4..c8382e456 100644 --- a/t/tap-escape-directive-2.sh +++ b/t/tap-escape-directive-2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-escape-directive.sh b/t/tap-escape-directive.sh index feb95d3b0..d0f95fca5 100644 --- a/t/tap-escape-directive.sh +++ b/t/tap-escape-directive.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-exit.sh b/t/tap-exit.sh index 95c194ebe..17132af74 100644 --- a/t/tap-exit.sh +++ b/t/tap-exit.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-fancy.sh b/t/tap-fancy.sh index f6e8d4c71..157b1443a 100644 --- a/t/tap-fancy.sh +++ b/t/tap-fancy.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-fancy2.sh b/t/tap-fancy2.sh index c0742f16a..ee592e5c9 100644 --- a/t/tap-fancy2.sh +++ b/t/tap-fancy2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-global-log.sh b/t/tap-global-log.sh index b303b4ad5..b9d2d8417 100644 --- a/t/tap-global-log.sh +++ b/t/tap-global-log.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-global-result.sh b/t/tap-global-result.sh index 025d78498..bc63982c3 100644 --- a/t/tap-global-result.sh +++ b/t/tap-global-result.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-log.sh b/t/tap-log.sh index d762ed717..878d81382 100644 --- a/t/tap-log.sh +++ b/t/tap-log.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-merge-stdout-stderr.sh b/t/tap-merge-stdout-stderr.sh index 26a16e8c8..d2c37383a 100644 --- a/t/tap-merge-stdout-stderr.sh +++ b/t/tap-merge-stdout-stderr.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-missing-plan-and-bad-exit.sh b/t/tap-missing-plan-and-bad-exit.sh index b578e6ac9..1e740dabf 100644 --- a/t/tap-missing-plan-and-bad-exit.sh +++ b/t/tap-missing-plan-and-bad-exit.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-more.sh b/t/tap-more.sh index 19d2e6115..8be3ab903 100644 --- a/t/tap-more.sh +++ b/t/tap-more.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-more2.sh b/t/tap-more2.sh index 491399ec0..7231d3c6a 100644 --- a/t/tap-more2.sh +++ b/t/tap-more2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-msg0-bailout.sh b/t/tap-msg0-bailout.sh index c6b3ca5e2..8bce0c8b7 100644 --- a/t/tap-msg0-bailout.sh +++ b/t/tap-msg0-bailout.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-msg0-directive.sh b/t/tap-msg0-directive.sh index 5f06820cc..dda285eb8 100644 --- a/t/tap-msg0-directive.sh +++ b/t/tap-msg0-directive.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-msg0-misc.sh b/t/tap-msg0-misc.sh index c5c724538..d7539ac41 100644 --- a/t/tap-msg0-misc.sh +++ b/t/tap-msg0-misc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-msg0-planskip.sh b/t/tap-msg0-planskip.sh index 71e882e71..28388f3ea 100644 --- a/t/tap-msg0-planskip.sh +++ b/t/tap-msg0-planskip.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-msg0-result.sh b/t/tap-msg0-result.sh index 2e0263f1f..af3751ed0 100644 --- a/t/tap-msg0-result.sh +++ b/t/tap-msg0-result.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-negative-numbers.sh b/t/tap-negative-numbers.sh index efd17dc48..0288a7205 100644 --- a/t/tap-negative-numbers.sh +++ b/t/tap-negative-numbers.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-no-disable-hard-error.sh b/t/tap-no-disable-hard-error.sh index 1a47b56c8..eaa0c41c1 100644 --- a/t/tap-no-disable-hard-error.sh +++ b/t/tap-no-disable-hard-error.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-no-merge-stdout-stderr.sh b/t/tap-no-merge-stdout-stderr.sh index 1fc0da638..d1096ac9c 100644 --- a/t/tap-no-merge-stdout-stderr.sh +++ b/t/tap-no-merge-stdout-stderr.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-no-spurious-numbers.sh b/t/tap-no-spurious-numbers.sh index 95e9832c9..7045a065c 100644 --- a/t/tap-no-spurious-numbers.sh +++ b/t/tap-no-spurious-numbers.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-no-spurious-summary.sh b/t/tap-no-spurious-summary.sh index 1831ef3cd..7c13d765b 100644 --- a/t/tap-no-spurious-summary.sh +++ b/t/tap-no-spurious-summary.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-no-spurious.sh b/t/tap-no-spurious.sh index 4d5e71ce0..098960bcd 100644 --- a/t/tap-no-spurious.sh +++ b/t/tap-no-spurious.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-not-ok-skip.sh b/t/tap-not-ok-skip.sh index 5d747ee6c..2b5536308 100644 --- a/t/tap-not-ok-skip.sh +++ b/t/tap-not-ok-skip.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-number-wordboundary.sh b/t/tap-number-wordboundary.sh index ef21f67be..ea3090906 100644 --- a/t/tap-number-wordboundary.sh +++ b/t/tap-number-wordboundary.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-numbers-leading-zero.sh b/t/tap-numbers-leading-zero.sh index eeb2ee760..b81410bb9 100644 --- a/t/tap-numbers-leading-zero.sh +++ b/t/tap-numbers-leading-zero.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-numeric-description.sh b/t/tap-numeric-description.sh index a89edf9b0..1ab84fab8 100644 --- a/t/tap-numeric-description.sh +++ b/t/tap-numeric-description.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-out-of-order.sh b/t/tap-out-of-order.sh index bb26edde4..76c30116c 100644 --- a/t/tap-out-of-order.sh +++ b/t/tap-out-of-order.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-passthrough-exit.sh b/t/tap-passthrough-exit.sh index cf9ea4614..10c91a0a5 100644 --- a/t/tap-passthrough-exit.sh +++ b/t/tap-passthrough-exit.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-passthrough.sh b/t/tap-passthrough.sh index 8132f5380..82f5bde7f 100644 --- a/t/tap-passthrough.sh +++ b/t/tap-passthrough.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-plan-corner.sh b/t/tap-plan-corner.sh index 7b64d3efd..cf58b713a 100644 --- a/t/tap-plan-corner.sh +++ b/t/tap-plan-corner.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-plan-errors.sh b/t/tap-plan-errors.sh index c49a19067..d5bfa618f 100644 --- a/t/tap-plan-errors.sh +++ b/t/tap-plan-errors.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-plan-leading-zero.sh b/t/tap-plan-leading-zero.sh index 92f43e4f8..790c09c90 100644 --- a/t/tap-plan-leading-zero.sh +++ b/t/tap-plan-leading-zero.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-plan-malformed.sh b/t/tap-plan-malformed.sh index 82da56984..d004dddb0 100644 --- a/t/tap-plan-malformed.sh +++ b/t/tap-plan-malformed.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-plan-middle.sh b/t/tap-plan-middle.sh index dd3247bbd..7d9d9cf2d 100644 --- a/t/tap-plan-middle.sh +++ b/t/tap-plan-middle.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-plan-whitespace.sh b/t/tap-plan-whitespace.sh index a3e2137b9..d327836b4 100644 --- a/t/tap-plan-whitespace.sh +++ b/t/tap-plan-whitespace.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-plan.sh b/t/tap-plan.sh index f17d90474..47d7f80d9 100644 --- a/t/tap-plan.sh +++ b/t/tap-plan.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-and-logging.sh b/t/tap-planskip-and-logging.sh index aaea4d0ab..cfb5d733d 100644 --- a/t/tap-planskip-and-logging.sh +++ b/t/tap-planskip-and-logging.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-badexit.sh b/t/tap-planskip-badexit.sh index 1336eac9a..144fd4087 100644 --- a/t/tap-planskip-badexit.sh +++ b/t/tap-planskip-badexit.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-bailout.sh b/t/tap-planskip-bailout.sh index 0e6f7b155..1490a6865 100644 --- a/t/tap-planskip-bailout.sh +++ b/t/tap-planskip-bailout.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-case-insensitive.sh b/t/tap-planskip-case-insensitive.sh index 790d9846d..88639db4d 100644 --- a/t/tap-planskip-case-insensitive.sh +++ b/t/tap-planskip-case-insensitive.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-late.sh b/t/tap-planskip-late.sh index 94af3e82b..ad1c445be 100644 --- a/t/tap-planskip-late.sh +++ b/t/tap-planskip-late.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-later-errors.sh b/t/tap-planskip-later-errors.sh index f26c14b71..85c755d3d 100644 --- a/t/tap-planskip-later-errors.sh +++ b/t/tap-planskip-later-errors.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-unplanned-corner.sh b/t/tap-planskip-unplanned-corner.sh index 36473b386..295339836 100644 --- a/t/tap-planskip-unplanned-corner.sh +++ b/t/tap-planskip-unplanned-corner.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-unplanned.sh b/t/tap-planskip-unplanned.sh index f48585c61..68462484f 100644 --- a/t/tap-planskip-unplanned.sh +++ b/t/tap-planskip-unplanned.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip-whitespace.sh b/t/tap-planskip-whitespace.sh index 39110ea73..29ab62dfd 100644 --- a/t/tap-planskip-whitespace.sh +++ b/t/tap-planskip-whitespace.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-planskip.sh b/t/tap-planskip.sh index 71cacf4e2..dd1013e21 100644 --- a/t/tap-planskip.sh +++ b/t/tap-planskip.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-recheck-logs.sh b/t/tap-recheck-logs.sh index 8503ef1f4..47099b06c 100644 --- a/t/tap-recheck-logs.sh +++ b/t/tap-recheck-logs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-recheck.sh b/t/tap-recheck.sh index 4a8bbc4cd..2a401bc97 100644 --- a/t/tap-recheck.sh +++ b/t/tap-recheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-result-comment.sh b/t/tap-result-comment.sh index 0ca2d219b..464187279 100644 --- a/t/tap-result-comment.sh +++ b/t/tap-result-comment.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-signal.tap b/t/tap-signal.tap index 70fe5c19d..b3ac57780 100644 --- a/t/tap-signal.tap +++ b/t/tap-signal.tap @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-summary-color.sh b/t/tap-summary-color.sh index 121cb3ef6..4ddcdd6c8 100644 --- a/t/tap-summary-color.sh +++ b/t/tap-summary-color.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-summary.sh b/t/tap-summary.sh index d9690aac8..f5fd58027 100644 --- a/t/tap-summary.sh +++ b/t/tap-summary.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-test-number-0.sh b/t/tap-test-number-0.sh index d447ebe07..af44cc886 100644 --- a/t/tap-test-number-0.sh +++ b/t/tap-test-number-0.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-todo-skip-together.sh b/t/tap-todo-skip-together.sh index a7d052cc1..fd31ce537 100644 --- a/t/tap-todo-skip-together.sh +++ b/t/tap-todo-skip-together.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-todo-skip-whitespace.sh b/t/tap-todo-skip-whitespace.sh index 55e4b8ff9..64c022186 100644 --- a/t/tap-todo-skip-whitespace.sh +++ b/t/tap-todo-skip-whitespace.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-todo-skip.sh b/t/tap-todo-skip.sh index 4a6841639..f8656ea45 100644 --- a/t/tap-todo-skip.sh +++ b/t/tap-todo-skip.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-unplanned.sh b/t/tap-unplanned.sh index c6521b038..dce721ffd 100644 --- a/t/tap-unplanned.sh +++ b/t/tap-unplanned.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-whitespace-normalization.sh b/t/tap-whitespace-normalization.sh index 65bc2fe16..523912cbc 100644 --- a/t/tap-whitespace-normalization.sh +++ b/t/tap-whitespace-normalization.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-with-and-without-number.sh b/t/tap-with-and-without-number.sh index 6b3b22423..b63a6ffe7 100644 --- a/t/tap-with-and-without-number.sh +++ b/t/tap-with-and-without-number.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tap-xfail-tests.sh b/t/tap-xfail-tests.sh index b8b785e2a..fa3e81c87 100644 --- a/t/tap-xfail-tests.sh +++ b/t/tap-xfail-tests.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tar-opts-errors.sh b/t/tar-opts-errors.sh index befc23f7e..280af4d55 100644 --- a/t/tar-opts-errors.sh +++ b/t/tar-opts-errors.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/tar-override.sh b/t/tar-override.sh index d5bbd5676..f839f610b 100644 --- a/t/tar-override.sh +++ b/t/tar-override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tar-pax.sh b/t/tar-pax.sh index 758d89a7d..c1efbb44d 100644 --- a/t/tar-pax.sh +++ b/t/tar-pax.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/tar-ustar-id-too-high.sh b/t/tar-ustar-id-too-high.sh index 79ae89d85..4285e029f 100644 --- a/t/tar-ustar-id-too-high.sh +++ b/t/tar-ustar-id-too-high.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/tar-ustar.sh b/t/tar-ustar.sh index c146ad98a..8c2a6ea9e 100644 --- a/t/tar-ustar.sh +++ b/t/tar-ustar.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/target-cflags.sh b/t/target-cflags.sh index 01bcbce93..167e63465 100644 --- a/t/target-cflags.sh +++ b/t/target-cflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2000-2013 Free Software Foundation, Inc. +# Copyright (C) 2000-2014 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 diff --git a/t/targetclash.sh b/t/targetclash.sh index 523492360..81c328600 100644 --- a/t/targetclash.sh +++ b/t/targetclash.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/test-driver-acsubst.sh b/t/test-driver-acsubst.sh index a17ac5775..1639f5205 100644 --- a/t/test-driver-acsubst.sh +++ b/t/test-driver-acsubst.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-cond.sh b/t/test-driver-cond.sh index 9b50b1c0a..65fbcf3ba 100644 --- a/t/test-driver-cond.sh +++ b/t/test-driver-cond.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-create-log-dir.sh b/t/test-driver-create-log-dir.sh index d3d2e5838..3257a9261 100644 --- a/t/test-driver-create-log-dir.sh +++ b/t/test-driver-create-log-dir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-custom-multitest-recheck.sh b/t/test-driver-custom-multitest-recheck.sh index f814ee529..fa8dd1bdd 100644 --- a/t/test-driver-custom-multitest-recheck.sh +++ b/t/test-driver-custom-multitest-recheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-custom-multitest-recheck2.sh b/t/test-driver-custom-multitest-recheck2.sh index 7340c4df9..c1040d4c2 100644 --- a/t/test-driver-custom-multitest-recheck2.sh +++ b/t/test-driver-custom-multitest-recheck2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-custom-multitest.sh b/t/test-driver-custom-multitest.sh index 2908a23d9..6a384d41c 100644 --- a/t/test-driver-custom-multitest.sh +++ b/t/test-driver-custom-multitest.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-custom-no-extra-driver.sh b/t/test-driver-custom-no-extra-driver.sh index b6b40349b..c6289bdd3 100644 --- a/t/test-driver-custom-no-extra-driver.sh +++ b/t/test-driver-custom-no-extra-driver.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-custom-xfail-tests.sh b/t/test-driver-custom-xfail-tests.sh index a7828c0b7..faf4743f4 100644 --- a/t/test-driver-custom-xfail-tests.sh +++ b/t/test-driver-custom-xfail-tests.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-custom.sh b/t/test-driver-custom.sh index 0c9baf098..d98ce55b5 100644 --- a/t/test-driver-custom.sh +++ b/t/test-driver-custom.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-fail.sh b/t/test-driver-fail.sh index 4a3c54f67..1e0c3f5c9 100644 --- a/t/test-driver-fail.sh +++ b/t/test-driver-fail.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-is-distributed.sh b/t/test-driver-is-distributed.sh index d870bd9c3..79a42d849 100644 --- a/t/test-driver-is-distributed.sh +++ b/t/test-driver-is-distributed.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-strip-vpath.sh b/t/test-driver-strip-vpath.sh index 8b7ab33f3..50f1b183f 100644 --- a/t/test-driver-strip-vpath.sh +++ b/t/test-driver-strip-vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-driver-trs-suffix-registered.sh b/t/test-driver-trs-suffix-registered.sh index a9b66cc04..fdf48129b 100644 --- a/t/test-driver-trs-suffix-registered.sh +++ b/t/test-driver-trs-suffix-registered.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-extensions-cond.sh b/t/test-extensions-cond.sh index b3be5b88f..fc9507f1e 100644 --- a/t/test-extensions-cond.sh +++ b/t/test-extensions-cond.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-extensions.sh b/t/test-extensions.sh index ca7c5eccb..74672ec60 100644 --- a/t/test-extensions.sh +++ b/t/test-extensions.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-harness-vpath-rewrite.sh b/t/test-harness-vpath-rewrite.sh index d300f97de..79dc5bd72 100644 --- a/t/test-harness-vpath-rewrite.sh +++ b/t/test-harness-vpath-rewrite.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/test-log.sh b/t/test-log.sh index fd54d6a2b..51a91cc45 100644 --- a/t/test-log.sh +++ b/t/test-log.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-logs-repeated.sh b/t/test-logs-repeated.sh index 28957b236..dbf1f8c07 100644 --- a/t/test-logs-repeated.sh +++ b/t/test-logs-repeated.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-metadata-global-log.sh b/t/test-metadata-global-log.sh index 98890af92..4bfa08a0f 100644 --- a/t/test-metadata-global-log.sh +++ b/t/test-metadata-global-log.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-metadata-global-result.sh b/t/test-metadata-global-result.sh index 26193c88f..48073a47a 100644 --- a/t/test-metadata-global-result.sh +++ b/t/test-metadata-global-result.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-metadata-recheck.sh b/t/test-metadata-recheck.sh index f6aea1b12..b4c67aeb5 100644 --- a/t/test-metadata-recheck.sh +++ b/t/test-metadata-recheck.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-metadata-results.sh b/t/test-metadata-results.sh index 9fc065e72..99046592e 100644 --- a/t/test-metadata-results.sh +++ b/t/test-metadata-results.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-missing.sh b/t/test-missing.sh index 1c7df041a..4713f08ac 100644 --- a/t/test-missing.sh +++ b/t/test-missing.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-missing2.sh b/t/test-missing2.sh index 9bc2812f7..5beb75fa1 100644 --- a/t/test-missing2.sh +++ b/t/test-missing2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-trs-basic.sh b/t/test-trs-basic.sh index a7f77d52f..303be1f84 100644 --- a/t/test-trs-basic.sh +++ b/t/test-trs-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-trs-recover.sh b/t/test-trs-recover.sh index 4585788a0..66e5995f4 100644 --- a/t/test-trs-recover.sh +++ b/t/test-trs-recover.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/test-trs-recover2.sh b/t/test-trs-recover2.sh index f996a5ccf..983b4d08a 100644 --- a/t/test-trs-recover2.sh +++ b/t/test-trs-recover2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tests-environment-and-log-compiler.sh b/t/tests-environment-and-log-compiler.sh index 5f0e2f527..9b3a9651b 100644 --- a/t/tests-environment-and-log-compiler.sh +++ b/t/tests-environment-and-log-compiler.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tests-environment-backcompat.sh b/t/tests-environment-backcompat.sh index 3068a0d8c..d2e5aa5f8 100644 --- a/t/tests-environment-backcompat.sh +++ b/t/tests-environment-backcompat.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tests-environment-fd-redirect.sh b/t/tests-environment-fd-redirect.sh index c08d5c666..d4e0e1cce 100644 --- a/t/tests-environment-fd-redirect.sh +++ b/t/tests-environment-fd-redirect.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/tests-environment.sh b/t/tests-environment.sh index 444067eb2..dc2c0f4bb 100644 --- a/t/tests-environment.sh +++ b/t/tests-environment.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/testsuite-summary-color.sh b/t/testsuite-summary-color.sh index 10485ba6a..042494ac6 100644 --- a/t/testsuite-summary-color.sh +++ b/t/testsuite-summary-color.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/testsuite-summary-count-many.sh b/t/testsuite-summary-count-many.sh index 094b9372c..c089c067a 100644 --- a/t/testsuite-summary-count-many.sh +++ b/t/testsuite-summary-count-many.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/testsuite-summary-count.sh b/t/testsuite-summary-count.sh index 7275136ae..3e854c79c 100644 --- a/t/testsuite-summary-count.sh +++ b/t/testsuite-summary-count.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/testsuite-summary-reference-log.sh b/t/testsuite-summary-reference-log.sh index 379f42bea..bc6a43a14 100644 --- a/t/testsuite-summary-reference-log.sh +++ b/t/testsuite-summary-reference-log.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/transform.sh b/t/transform.sh index 229ad63ed..94192e556 100644 --- a/t/transform.sh +++ b/t/transform.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/transform2.sh b/t/transform2.sh index 0da2cb9c9..81b574a99 100644 --- a/t/transform2.sh +++ b/t/transform2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/transform3.sh b/t/transform3.sh index 08e1d2d75..0eb188d43 100644 --- a/t/transform3.sh +++ b/t/transform3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/txinfo-absolute-srcdir-pr408.sh b/t/txinfo-absolute-srcdir-pr408.sh index 3d7e41d71..874cb3bd1 100644 --- a/t/txinfo-absolute-srcdir-pr408.sh +++ b/t/txinfo-absolute-srcdir-pr408.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo-add-missing-and-dist.sh b/t/txinfo-add-missing-and-dist.sh index eaef47c3b..793605a79 100644 --- a/t/txinfo-add-missing-and-dist.sh +++ b/t/txinfo-add-missing-and-dist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2013 Free Software Foundation, Inc. +# Copyright (C) 1999-2014 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 diff --git a/t/txinfo-bsd-make-recurs.sh b/t/txinfo-bsd-make-recurs.sh index 5365c99c4..5e1f39be5 100644 --- a/t/txinfo-bsd-make-recurs.sh +++ b/t/txinfo-bsd-make-recurs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2009-2013 Free Software Foundation, Inc. +# Copyright (C) 2009-2014 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 diff --git a/t/txinfo-builddir.sh b/t/txinfo-builddir.sh index 42d4112d7..2d4c670a6 100644 --- a/t/txinfo-builddir.sh +++ b/t/txinfo-builddir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/txinfo-clean.sh b/t/txinfo-clean.sh index 5183811ac..b936e410e 100644 --- a/t/txinfo-clean.sh +++ b/t/txinfo-clean.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo-dvi-recurs.sh b/t/txinfo-dvi-recurs.sh index 5385bc4f3..ac5505549 100644 --- a/t/txinfo-dvi-recurs.sh +++ b/t/txinfo-dvi-recurs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/txinfo-include.sh b/t/txinfo-include.sh index 5bb8963c5..59b11fde4 100644 --- a/t/txinfo-include.sh +++ b/t/txinfo-include.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/txinfo-info-in-srcdir.sh b/t/txinfo-info-in-srcdir.sh index 56d336640..7c57e180a 100644 --- a/t/txinfo-info-in-srcdir.sh +++ b/t/txinfo-info-in-srcdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/txinfo-makeinfo-error-no-clobber.sh b/t/txinfo-makeinfo-error-no-clobber.sh index f4b7d01b1..270019e69 100644 --- a/t/txinfo-makeinfo-error-no-clobber.sh +++ b/t/txinfo-makeinfo-error-no-clobber.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo-many-output-formats-vpath.sh b/t/txinfo-many-output-formats-vpath.sh index e31a2e1ac..9b4dcd098 100644 --- a/t/txinfo-many-output-formats-vpath.sh +++ b/t/txinfo-many-output-formats-vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo-many-output-formats.sh b/t/txinfo-many-output-formats.sh index e3eb0c9d3..0d2293062 100644 --- a/t/txinfo-many-output-formats.sh +++ b/t/txinfo-many-output-formats.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo-no-clutter.sh b/t/txinfo-no-clutter.sh index 8cdf7fc45..ee9f36c0d 100644 --- a/t/txinfo-no-clutter.sh +++ b/t/txinfo-no-clutter.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/txinfo-no-extra-dist.sh b/t/txinfo-no-extra-dist.sh index aa7bec22c..bb0bd88ac 100644 --- a/t/txinfo-no-extra-dist.sh +++ b/t/txinfo-no-extra-dist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/txinfo-no-installinfo.sh b/t/txinfo-no-installinfo.sh index 17e559e65..9400aed02 100644 --- a/t/txinfo-no-installinfo.sh +++ b/t/txinfo-no-installinfo.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo-no-repeated-targets.sh b/t/txinfo-no-repeated-targets.sh index 99894f597..2dcdacd11 100644 --- a/t/txinfo-no-repeated-targets.sh +++ b/t/txinfo-no-repeated-targets.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/txinfo-nodist-info.sh b/t/txinfo-nodist-info.sh index 265587e4e..35bb0fa64 100644 --- a/t/txinfo-nodist-info.sh +++ b/t/txinfo-nodist-info.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2013 Free Software Foundation, Inc. +# Copyright (C) 2013-2014 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 diff --git a/t/txinfo-other-suffixes.sh b/t/txinfo-other-suffixes.sh index cbb3afa88..078d3b4f0 100644 --- a/t/txinfo-other-suffixes.sh +++ b/t/txinfo-other-suffixes.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/txinfo-override-infodeps.sh b/t/txinfo-override-infodeps.sh index 9ae09b427..7207aa752 100644 --- a/t/txinfo-override-infodeps.sh +++ b/t/txinfo-override-infodeps.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/txinfo-override-texinfo-tex.sh b/t/txinfo-override-texinfo-tex.sh index 72bf834e2..fc2fcc721 100644 --- a/t/txinfo-override-texinfo-tex.sh +++ b/t/txinfo-override-texinfo-tex.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo-setfilename-repeated.sh b/t/txinfo-setfilename-repeated.sh index d06b9b902..3f14873e9 100644 --- a/t/txinfo-setfilename-repeated.sh +++ b/t/txinfo-setfilename-repeated.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/txinfo-setfilename-suffix-strip.sh b/t/txinfo-setfilename-suffix-strip.sh index 85f5d20a1..48f971751 100644 --- a/t/txinfo-setfilename-suffix-strip.sh +++ b/t/txinfo-setfilename-suffix-strip.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/txinfo-subdir-pr343.sh b/t/txinfo-subdir-pr343.sh index 73c70df1e..c69fcb407 100644 --- a/t/txinfo-subdir-pr343.sh +++ b/t/txinfo-subdir-pr343.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/txinfo-tex-dist.sh b/t/txinfo-tex-dist.sh index ef52aeca8..c0633ff40 100644 --- a/t/txinfo-tex-dist.sh +++ b/t/txinfo-tex-dist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/txinfo-unrecognized-extension.sh b/t/txinfo-unrecognized-extension.sh index f3112c500..e2209cd73 100644 --- a/t/txinfo-unrecognized-extension.sh +++ b/t/txinfo-unrecognized-extension.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/txinfo-unrecognized-info-suffix.sh b/t/txinfo-unrecognized-info-suffix.sh index 5836778ce..9dfae4461 100644 --- a/t/txinfo-unrecognized-info-suffix.sh +++ b/t/txinfo-unrecognized-info-suffix.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/txinfo-vtexi.sh b/t/txinfo-vtexi.sh index ba312b3f2..904625a02 100644 --- a/t/txinfo-vtexi.sh +++ b/t/txinfo-vtexi.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/txinfo-vtexi2.sh b/t/txinfo-vtexi2.sh index 72bad5d76..01d6c67eb 100644 --- a/t/txinfo-vtexi2.sh +++ b/t/txinfo-vtexi2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/txinfo-vtexi3.sh b/t/txinfo-vtexi3.sh index 4a0e31c74..fceb48642 100644 --- a/t/txinfo-vtexi3.sh +++ b/t/txinfo-vtexi3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/txinfo-vtexi4.sh b/t/txinfo-vtexi4.sh index 23a814e10..74e10e7af 100644 --- a/t/txinfo-vtexi4.sh +++ b/t/txinfo-vtexi4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/txinfo-without-info-suffix.sh b/t/txinfo-without-info-suffix.sh index 29bfbc91d..b0c174cbd 100644 --- a/t/txinfo-without-info-suffix.sh +++ b/t/txinfo-without-info-suffix.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/txinfo19.sh b/t/txinfo19.sh index 569849251..ae7739a4c 100644 --- a/t/txinfo19.sh +++ b/t/txinfo19.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo23.sh b/t/txinfo23.sh index 6c2d9ce3c..e71fc5745 100644 --- a/t/txinfo23.sh +++ b/t/txinfo23.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/txinfo24.sh b/t/txinfo24.sh index 9daa82ec7..df202a8fa 100644 --- a/t/txinfo24.sh +++ b/t/txinfo24.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/txinfo25.sh b/t/txinfo25.sh index aad0cb771..8d7f12748 100644 --- a/t/txinfo25.sh +++ b/t/txinfo25.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2003-2013 Free Software Foundation, Inc. +# Copyright (C) 2003-2014 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 diff --git a/t/txinfo28.sh b/t/txinfo28.sh index 191a21849..93929c3e3 100644 --- a/t/txinfo28.sh +++ b/t/txinfo28.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/uninstall-fail.sh b/t/uninstall-fail.sh index 1c7f9da05..df2042dfd 100644 --- a/t/uninstall-fail.sh +++ b/t/uninstall-fail.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/uninstall-pr9578.sh b/t/uninstall-pr9578.sh index 3b3db545b..8cea8ba84 100644 --- a/t/uninstall-pr9578.sh +++ b/t/uninstall-pr9578.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/unused.sh b/t/unused.sh index 7a0f812b7..4c03327b3 100644 --- a/t/unused.sh +++ b/t/unused.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/upc.sh b/t/upc.sh index 168186c7e..d9de424ac 100644 --- a/t/upc.sh +++ b/t/upc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/upc2.sh b/t/upc2.sh index 0924608a3..2fb0e28b4 100644 --- a/t/upc2.sh +++ b/t/upc2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/upc3.sh b/t/upc3.sh index d5d126d6f..78429e4d8 100644 --- a/t/upc3.sh +++ b/t/upc3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2013 Free Software Foundation, Inc. +# Copyright (C) 2006-2014 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 diff --git a/t/vala-configure.sh b/t/vala-configure.sh index 4f59d070f..23ba46197 100644 --- a/t/vala-configure.sh +++ b/t/vala-configure.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2008-2013 Free Software Foundation, Inc. +# Copyright (C) 2008-2014 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 diff --git a/t/vala-grepping.sh b/t/vala-grepping.sh index fd16b6bd1..a94068e17 100644 --- a/t/vala-grepping.sh +++ b/t/vala-grepping.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/vala-headers.sh b/t/vala-headers.sh index 768a3d776..b24633d72 100644 --- a/t/vala-headers.sh +++ b/t/vala-headers.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/vala-libs.sh b/t/vala-libs.sh index f1ed99ab2..67d455eb3 100644 --- a/t/vala-libs.sh +++ b/t/vala-libs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/vala-mix.sh b/t/vala-mix.sh index 1ac851e0b..a21ba0cef 100644 --- a/t/vala-mix.sh +++ b/t/vala-mix.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/vala-mix2.sh b/t/vala-mix2.sh index c1230838a..6b25dcdb4 100644 --- a/t/vala-mix2.sh +++ b/t/vala-mix2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/vala-non-recursive-setup.sh b/t/vala-non-recursive-setup.sh index 88f67a879..6358fd633 100644 --- a/t/vala-non-recursive-setup.sh +++ b/t/vala-non-recursive-setup.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/vala-parallel.sh b/t/vala-parallel.sh index e240900ea..5b57b9886 100644 --- a/t/vala-parallel.sh +++ b/t/vala-parallel.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/vala-per-target-flags.sh b/t/vala-per-target-flags.sh index add07cf33..76885c9d4 100644 --- a/t/vala-per-target-flags.sh +++ b/t/vala-per-target-flags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/vala-recursive-setup.sh b/t/vala-recursive-setup.sh index cf7980dd2..b411018cc 100644 --- a/t/vala-recursive-setup.sh +++ b/t/vala-recursive-setup.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/vala-vapi.sh b/t/vala-vapi.sh index ce5ca9d73..114cee2cd 100644 --- a/t/vala-vapi.sh +++ b/t/vala-vapi.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/vala-vpath.sh b/t/vala-vpath.sh index b8b1c4493..92ccf1cb0 100644 --- a/t/vala-vpath.sh +++ b/t/vala-vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/var-recurs.sh b/t/var-recurs.sh index e60a5c0de..5f8ff3138 100644 --- a/t/var-recurs.sh +++ b/t/var-recurs.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/var-recurs2.sh b/t/var-recurs2.sh index 809821242..a24667bfc 100644 --- a/t/var-recurs2.sh +++ b/t/var-recurs2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/vars.sh b/t/vars.sh index 0d5927251..6f4f55f0b 100644 --- a/t/vars.sh +++ b/t/vars.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/vars3.sh b/t/vars3.sh index 4ba9d39ec..42cd9cd9b 100644 --- a/t/vars3.sh +++ b/t/vars3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/vartar.sh b/t/vartar.sh index d9ba425b4..bd9bcc4f3 100644 --- a/t/vartar.sh +++ b/t/vartar.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/vartypo2.sh b/t/vartypo2.sh index 4ecd34bb9..5fb38e832 100644 --- a/t/vartypo2.sh +++ b/t/vartypo2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/vartypos.sh b/t/vartypos.sh index 8e0e38b66..042e894e3 100644 --- a/t/vartypos.sh +++ b/t/vartypos.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/version3.sh b/t/version3.sh index 9ee3c1a1f..35604c948 100644 --- a/t/version3.sh +++ b/t/version3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/version4.sh b/t/version4.sh index 58e234d0e..e4395d2e2 100644 --- a/t/version4.sh +++ b/t/version4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/version6.sh b/t/version6.sh index b249d4773..f9ca0622e 100644 --- a/t/version6.sh +++ b/t/version6.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/version7.sh b/t/version7.sh index 336f629c6..5cf5ceb97 100644 --- a/t/version7.sh +++ b/t/version7.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/version8.sh b/t/version8.sh index f00e6ae31..9bc960818 100644 --- a/t/version8.sh +++ b/t/version8.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2005-2013 Free Software Foundation, Inc. +# Copyright (C) 2005-2014 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 diff --git a/t/vpath.sh b/t/vpath.sh index 0585c3f41..57eb69d19 100644 --- a/t/vpath.sh +++ b/t/vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/warning-groups-win-over-strictness.sh b/t/warning-groups-win-over-strictness.sh index e0aa4abbc..affaa59e9 100644 --- a/t/warning-groups-win-over-strictness.sh +++ b/t/warning-groups-win-over-strictness.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/warnings-obsolete-default.sh b/t/warnings-obsolete-default.sh index 91055e3ce..290c1a8e6 100644 --- a/t/warnings-obsolete-default.sh +++ b/t/warnings-obsolete-default.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/warnings-override.sh b/t/warnings-override.sh index e63f99b1a..ec866892a 100644 --- a/t/warnings-override.sh +++ b/t/warnings-override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/warnings-precedence.sh b/t/warnings-precedence.sh index 2fa8b7832..47bdfc5f0 100644 --- a/t/warnings-precedence.sh +++ b/t/warnings-precedence.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/warnings-strictness-interactions.sh b/t/warnings-strictness-interactions.sh index ba472460c..7df44cd93 100644 --- a/t/warnings-strictness-interactions.sh +++ b/t/warnings-strictness-interactions.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/warnings-unknown.sh b/t/warnings-unknown.sh index 697484e1b..0925669d1 100644 --- a/t/warnings-unknown.sh +++ b/t/warnings-unknown.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/warnings-win-over-strictness.sh b/t/warnings-win-over-strictness.sh index a037911be..11ae8fdd2 100644 --- a/t/warnings-win-over-strictness.sh +++ b/t/warnings-win-over-strictness.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/warnopts.sh b/t/warnopts.sh index 447357ab2..70fe42645 100644 --- a/t/warnopts.sh +++ b/t/warnopts.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/werror.sh b/t/werror.sh index b6018485b..83f89ba17 100644 --- a/t/werror.sh +++ b/t/werror.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/werror2.sh b/t/werror2.sh index 0d86953c1..da67d9ff6 100644 --- a/t/werror2.sh +++ b/t/werror2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2004-2013 Free Software Foundation, Inc. +# Copyright (C) 2004-2014 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 diff --git a/t/werror3.sh b/t/werror3.sh index c1ec28a49..33fb7d936 100644 --- a/t/werror3.sh +++ b/t/werror3.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/werror4.sh b/t/werror4.sh index d4398fb0c..4027a93c8 100644 --- a/t/werror4.sh +++ b/t/werror4.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/whoami.sh b/t/whoami.sh index 94b9daca9..0bce24f3e 100644 --- a/t/whoami.sh +++ b/t/whoami.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1998-2013 Free Software Foundation, Inc. +# Copyright (C) 1998-2014 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 diff --git a/t/wrap/aclocal.in b/t/wrap/aclocal.in index cdcae1a88..e64b546a7 100644 --- a/t/wrap/aclocal.in +++ b/t/wrap/aclocal.in @@ -1,7 +1,7 @@ #!@PERL@ -w # @configure_input@ -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/wrap/automake.in b/t/wrap/automake.in index cf18d7b24..8b943b113 100644 --- a/t/wrap/automake.in +++ b/t/wrap/automake.in @@ -1,7 +1,7 @@ #!@PERL@ -w # @configure_input@ -# Copyright (C) 2012-2013 Free Software Foundation, Inc. +# Copyright (C) 2012-2014 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 diff --git a/t/xsource.sh b/t/xsource.sh index a3fe6e514..e55cd1c3d 100644 --- a/t/xsource.sh +++ b/t/xsource.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/yacc-auxdir.sh b/t/yacc-auxdir.sh index 92e74de67..228532f46 100644 --- a/t/yacc-auxdir.sh +++ b/t/yacc-auxdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/yacc-basic.sh b/t/yacc-basic.sh index a4a177999..f3f43a4b9 100644 --- a/t/yacc-basic.sh +++ b/t/yacc-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/yacc-bison-skeleton-cxx.sh b/t/yacc-bison-skeleton-cxx.sh index 54d555427..279337412 100644 --- a/t/yacc-bison-skeleton-cxx.sh +++ b/t/yacc-bison-skeleton-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-bison-skeleton.sh b/t/yacc-bison-skeleton.sh index 4553f7e50..4f8235e21 100644 --- a/t/yacc-bison-skeleton.sh +++ b/t/yacc-bison-skeleton.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-clean-cxx.sh b/t/yacc-clean-cxx.sh index 3933d1365..e9e7e0a2a 100644 --- a/t/yacc-clean-cxx.sh +++ b/t/yacc-clean-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-clean.sh b/t/yacc-clean.sh index e3081d64f..b88cb21f5 100644 --- a/t/yacc-clean.sh +++ b/t/yacc-clean.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-cxx-grepping.sh b/t/yacc-cxx-grepping.sh index 079014673..bd7a85150 100644 --- a/t/yacc-cxx-grepping.sh +++ b/t/yacc-cxx-grepping.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1997-2013 Free Software Foundation, Inc. +# Copyright (C) 1997-2014 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 diff --git a/t/yacc-cxx.sh b/t/yacc-cxx.sh index 6e832af62..610c4505c 100644 --- a/t/yacc-cxx.sh +++ b/t/yacc-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-d-basic.sh b/t/yacc-d-basic.sh index 929185c1f..741de2559 100644 --- a/t/yacc-d-basic.sh +++ b/t/yacc-d-basic.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-d-cxx.sh b/t/yacc-d-cxx.sh index a4d65e613..d56197c9c 100644 --- a/t/yacc-d-cxx.sh +++ b/t/yacc-d-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-d-vpath.sh b/t/yacc-d-vpath.sh index 1840e3cc5..8936ecb2e 100644 --- a/t/yacc-d-vpath.sh +++ b/t/yacc-d-vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-deleted-headers.sh b/t/yacc-deleted-headers.sh index 266111f43..54500f7ee 100644 --- a/t/yacc-deleted-headers.sh +++ b/t/yacc-deleted-headers.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-depend.sh b/t/yacc-depend.sh index 5df370efe..4e9a6f3c6 100644 --- a/t/yacc-depend.sh +++ b/t/yacc-depend.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/yacc-depend2.sh b/t/yacc-depend2.sh index 3fed4e148..9097646d3 100644 --- a/t/yacc-depend2.sh +++ b/t/yacc-depend2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/yacc-dist-nobuild-subdir.sh b/t/yacc-dist-nobuild-subdir.sh index 8b7f7ff9b..d9aa0b639 100644 --- a/t/yacc-dist-nobuild-subdir.sh +++ b/t/yacc-dist-nobuild-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-dist-nobuild.sh b/t/yacc-dist-nobuild.sh index 54164b832..effabf0cd 100644 --- a/t/yacc-dist-nobuild.sh +++ b/t/yacc-dist-nobuild.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-dry.sh b/t/yacc-dry.sh index 79cf490ae..034468245 100644 --- a/t/yacc-dry.sh +++ b/t/yacc-dry.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/yacc-grepping.sh b/t/yacc-grepping.sh index e185e9c94..2a173fe94 100644 --- a/t/yacc-grepping.sh +++ b/t/yacc-grepping.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1996-2013 Free Software Foundation, Inc. +# Copyright (C) 1996-2014 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 diff --git a/t/yacc-grepping2.sh b/t/yacc-grepping2.sh index 3c5da2255..36b2dbbcd 100644 --- a/t/yacc-grepping2.sh +++ b/t/yacc-grepping2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/yacc-headers-and-dist-pr47.sh b/t/yacc-headers-and-dist-pr47.sh index 5301706f4..b1c1d9adc 100644 --- a/t/yacc-headers-and-dist-pr47.sh +++ b/t/yacc-headers-and-dist-pr47.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/yacc-line.sh b/t/yacc-line.sh index b034af36e..127e9ee86 100644 --- a/t/yacc-line.sh +++ b/t/yacc-line.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/yacc-misc.sh b/t/yacc-misc.sh index bdadd648e..16d49cfeb 100644 --- a/t/yacc-misc.sh +++ b/t/yacc-misc.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/yacc-mix-c-cxx.sh b/t/yacc-mix-c-cxx.sh index 207de6157..739ffb2f2 100644 --- a/t/yacc-mix-c-cxx.sh +++ b/t/yacc-mix-c-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-nodist.sh b/t/yacc-nodist.sh index 7dab305a1..b1e023e48 100644 --- a/t/yacc-nodist.sh +++ b/t/yacc-nodist.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yacc-pr204.sh b/t/yacc-pr204.sh index 47e5d0240..ba885c6bd 100644 --- a/t/yacc-pr204.sh +++ b/t/yacc-pr204.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/yacc-subdir.sh b/t/yacc-subdir.sh index 95788ec8a..95eeeba60 100644 --- a/t/yacc-subdir.sh +++ b/t/yacc-subdir.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2002-2013 Free Software Foundation, Inc. +# Copyright (C) 2002-2014 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 diff --git a/t/yacc-vpath.sh b/t/yacc-vpath.sh index bd123374f..3551a1b31 100644 --- a/t/yacc-vpath.sh +++ b/t/yacc-vpath.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2001-2013 Free Software Foundation, Inc. +# Copyright (C) 2001-2014 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 diff --git a/t/yacc-weirdnames.sh b/t/yacc-weirdnames.sh index be13c139a..a06739695 100644 --- a/t/yacc-weirdnames.sh +++ b/t/yacc-weirdnames.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yflags-cmdline-override.sh b/t/yflags-cmdline-override.sh index 03c0483fe..3ef75ae4e 100644 --- a/t/yflags-cmdline-override.sh +++ b/t/yflags-cmdline-override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yflags-conditional.sh b/t/yflags-conditional.sh index 66346496e..24e7e44e3 100644 --- a/t/yflags-conditional.sh +++ b/t/yflags-conditional.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yflags-cxx.sh b/t/yflags-cxx.sh index 1d34dc5cd..ef8999b62 100644 --- a/t/yflags-cxx.sh +++ b/t/yflags-cxx.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 diff --git a/t/yflags-d-false-positives.sh b/t/yflags-d-false-positives.sh index b711c56f4..6e6d30182 100644 --- a/t/yflags-d-false-positives.sh +++ b/t/yflags-d-false-positives.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yflags-force-conditional.sh b/t/yflags-force-conditional.sh index 1d2c8120e..5b4314ccf 100644 --- a/t/yflags-force-conditional.sh +++ b/t/yflags-force-conditional.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yflags-force-override.sh b/t/yflags-force-override.sh index 6e52b3238..e304c730e 100644 --- a/t/yflags-force-override.sh +++ b/t/yflags-force-override.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yflags-var-expand.sh b/t/yflags-var-expand.sh index aaaa10330..ed22f016f 100644 --- a/t/yflags-var-expand.sh +++ b/t/yflags-var-expand.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2011-2013 Free Software Foundation, Inc. +# Copyright (C) 2011-2014 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 diff --git a/t/yflags.sh b/t/yflags.sh index dcd2f58ab..9ab097028 100644 --- a/t/yflags.sh +++ b/t/yflags.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2010-2013 Free Software Foundation, Inc. +# Copyright (C) 2010-2014 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 -- cgit v1.2.1 From 5de7c3b47e04fe76980e9d8aa97ee5d17363140a Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Mon, 21 Apr 2014 15:31:49 +0100 Subject: plans: enabling subdir-object by default is blocked on bug#13928 Signed-off-by: Stefano Lattarini --- PLANS/subdir-objects.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/PLANS/subdir-objects.txt b/PLANS/subdir-objects.txt index 94c6305ec..3cf610124 100644 --- a/PLANS/subdir-objects.txt +++ b/PLANS/subdir-objects.txt @@ -5,6 +5,9 @@ We want to make the behaviour currently enabled by the 'subdir-objects' the default one, and in fact the *only* one, in Automake 2.0. See automake bug#13378: . +Sadly, **THIS IS IMPOSSIBLE** until automake bug#13928 is resolved: +http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13928 + Details ------- @@ -50,6 +53,12 @@ We also make sure to avoid the warning when it would be irrelevant, i.e., if all source files sit in "current" directory (thanks to Peter Johansson for suggesting this). +For some automake 1.x (*before* 2.0 can be released) +---------------------------------------------------- + +Find a proper way to fix the blocking automake bug#13928: +http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13928 + For automake 2.0 ---------------- -- cgit v1.2.1 From 7bc592708cc65f30f8322c18624f48f19ffd726f Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Mon, 21 Apr 2014 17:12:41 +0100 Subject: init: ensure $ac_aux_dir is defined before being used Since we use '$ac_aux_dir' to define '$am_aux_dir', we need to ensure the former has been initialized before we try to define the latter, otherwise the definition: am_aux_dir=`cd $ac_aux_dir && pwd` will set '$am_aux_dir' to '$HOME', likely causing weird and unexpected behaviours. This change fixes automake bug#15981. * m4/auxdir.m4 (AM_AUX_DIR_EXPAND): AC_REQUIRE expansion of 'AC_CONFIG_AUX_DIR_DEFAULT'. Fix redundant comment and AC_PREREQ, add extra quoting around '$ac_aux_dir'. * t/auxdir-pr15981.sh: New test. * t/auxdir-cc-pr15981.sh: Likewise. * t/list-of-tests.mk (handwritten_TESTS): Add them. * THANKS, NEWS: Update. * bin/automake.in: Fix a harmless typo in comments, that I happened to notice while writing this patch. Signed-off-by: Stefano Lattarini --- NEWS | 5 ++++- THANKS | 1 + bin/automake.in | 2 +- m4/auxdir.m4 | 7 +++---- t/auxdir-cc-pr15981.sh | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++ t/auxdir-pr15981.sh | 39 ++++++++++++++++++++++++++++++++++ t/list-of-tests.mk | 2 ++ 7 files changed, 107 insertions(+), 6 deletions(-) create mode 100644 t/auxdir-cc-pr15981.sh create mode 100644 t/auxdir-pr15981.sh diff --git a/NEWS b/NEWS index eb88c17d8..b008a015c 100644 --- a/NEWS +++ b/NEWS @@ -97,7 +97,7 @@ New in 1.15: extra useless "make all" recursive invocation in some corner cases (automake bug#16302). -* Bug fixes: +* Bugs fixed: - The user can now extend the special .PRECIOUS target, the same way he could already do with the .MAKE .and .PHONY targets. @@ -105,6 +105,9 @@ New in 1.15: - Fixed confusing typos in the manual and in some warning messages (automake bug#16827 and bug#16997). + - We no longer risk to use '$ac_aux_dir' before it's defined. See + automake bug#15981. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ New in 1.14.1: diff --git a/THANKS b/THANKS index 550b565e8..eef67c353 100644 --- a/THANKS +++ b/THANKS @@ -317,6 +317,7 @@ Per Oyvind Hvidsten poeh@enter.vg Peter Breitenlohner peb@mppmu.mpg.de Peter Eisentraut peter_e@gmx.net Peter Gavin pgavin@debaser.kicks-ass.org +Peter Hutterer peter.hutterer@who-t.net Peter Johansson trojkan@gmail.com Peter Mattis petm@scam.XCF.Berkeley.EDU Peter Muir iyhi@yahoo.com diff --git a/bin/automake.in b/bin/automake.in index 996a9de23..f9cc611a4 100644 --- a/bin/automake.in +++ b/bin/automake.in @@ -313,7 +313,7 @@ my $seen_ar = 0; # Location of AC_REQUIRE_AUX_FILE calls, indexed by their argument. my %required_aux_file = (); -# Where AM_INIT_AUTOMAKE is called; +# Where AM_INIT_AUTOMAKE is called. my $seen_init_automake = 0; # TRUE if we've seen AM_AUTOMAKE_VERSION. diff --git a/m4/auxdir.m4 b/m4/auxdir.m4 index 1f8614d47..93fc22521 100644 --- a/m4/auxdir.m4 +++ b/m4/auxdir.m4 @@ -45,8 +45,7 @@ # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], -[dnl Rely on autoconf to set up CDPATH properly. -AC_PREREQ([2.50])dnl -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` +[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +# Expand $ac_aux_dir to an absolute path. +am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) diff --git a/t/auxdir-cc-pr15981.sh b/t/auxdir-cc-pr15981.sh new file mode 100644 index 000000000..74157cbc1 --- /dev/null +++ b/t/auxdir-cc-pr15981.sh @@ -0,0 +1,57 @@ +#! /bin/sh +# Copyright (C) 2014 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 automake bug#15981: automake 1.14 may use $ac_aux_dir +# before it is defined, leading to error messages such as: +# "/bin/sh: /home/david/missing: No such file or directory" + +required=cc +. test-init.sh + +cat > configure.ac < foo.c + +cat > Makefile.am <<'END' +bin_PROGRAMS = foo + +# Without quotes around '--help' and with an empty $(MISSING), make might +# strip the trailing '--', call Bash's 'help' builtin, and have this test +# succeed spuriously. Yes, that has happened in practice :-( +test: + $(MISSING) '--help' +END + +$ACLOCAL +$AUTOCONF +$AUTOMAKE + +./configure 2>stderr || { cat stderr >&2; exit 1; } +cat stderr >&2 +$FGREP "missing" stderr && exit 1 + +$MAKE all +$MAKE test + +: diff --git a/t/auxdir-pr15981.sh b/t/auxdir-pr15981.sh new file mode 100644 index 000000000..f09d551fd --- /dev/null +++ b/t/auxdir-pr15981.sh @@ -0,0 +1,39 @@ +#! /bin/sh +# Copyright (C) 2014 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 . + +# AM_AUX_DIR_EXPAND should ensure $ac_aux_dir is properly initialized. +# Issue revealed by related automake bug#15981. + +. test-init.sh + +cat > configure.ac <<'END' +AC_INIT([test], [0.0]) +AM_AUX_DIR_EXPAND +printf '%s\n' "ac_aux_dir: '$ac_aux_dir'" +printf '%s\n' "am_aux_dir: '$am_aux_dir'" +test "$ac_aux_dir" = . || AS_EXIT([1]) +test "$am_aux_dir" = "`pwd`" || AS_EXIT([1]) +AS_EXIT([0]) +END + +$ACLOCAL +$AUTOCONF + +test -f install-sh # sanity check + +./configure + +: diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index 6b2eebe78..e6ee8569b 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -116,6 +116,8 @@ t/aclocal-scan-configure-ac-pr319.sh \ t/aclocal-serial.sh \ t/aclocal-underquoted-defun.sh \ t/aclocal-verbose-install.sh \ +t/auxdir-pr15981.sh \ +t/auxdir-cc-pr15981.sh \ t/ac-output-old.tap \ t/acsilent.sh \ t/acsubst.sh \ -- cgit v1.2.1 From 6465c530f7a6b6a88a839b7afe64e5a76429050c Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 23 Aug 2014 07:55:28 -0700 Subject: build: fix race in parallel builds Reported by Friedrich Beckmann in: http://bugs.gnu.org/18301 * lib/am/texi-vers.am (?DIRSTAMP?): Put the process-ID into the temporary file name. Use a similar temporary in the source dir. --- lib/am/texi-vers.am | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/am/texi-vers.am b/lib/am/texi-vers.am index b3a8d1239..ec91dfe02 100644 --- a/lib/am/texi-vers.am +++ b/lib/am/texi-vers.am @@ -31,25 +31,25 @@ DIST_COMMON += %VTEXI% %STAMPVTI% ## %STAMPVTI% is distributed and %DIRSTAMP% isn't: a distributed file ## should never be dependent upon a non-distributed built file. ## Therefore we ensure that %DIRSTAMP% exists in the rule. +## Use cp + mv so that the update of %VTEXI% is atomic even if +## the source directory is on a different file system. ?DIRSTAMP? @test -f %DIRSTAMP% || $(MAKE) $(AM_MAKEFLAGS) %DIRSTAMP% @(dir=.; test -f ./%TEXI% || dir=$(srcdir); \ set `$(SHELL) %MDDIR%mdate-sh $$dir/%TEXI%`; \ echo "@set UPDATED $$1 $$2 $$3"; \ echo "@set UPDATED-MONTH $$2 $$3"; \ echo "@set EDITION $(VERSION)"; \ - echo "@set VERSION $(VERSION)") > %VTI%.tmp -## Use cp and rm here because some older "mv"s can't move across -## filesystems. Furthermore, GNU "mv" in the AmigaDOS environment -## can't handle this. - @cmp -s %VTI%.tmp %VTEXI% \ - || (echo "Updating %VTEXI%"; \ - cp %VTI%.tmp %VTEXI%) - -@rm -f %VTI%.tmp + echo "@set VERSION $(VERSION)") > %VTI%.tmp$$$$ && \ + (cmp -s %VTI%.tmp$$$$ %VTEXI% \ + || (echo "Updating %VTEXI%" && \ + cp %VTI%.tmp$$$$ %VTEXI%.tmp$$$$ && \ + mv %VTEXI%.tmp$$$$ %VTEXI%)) && \ + rm -f %VTI%.tmp$$$$ %VTEXI%.$$$$ @cp %VTEXI% $@ mostlyclean-am: mostlyclean-%VTI% mostlyclean-%VTI%: - -rm -f %VTI%.tmp + -rm -f %VTI%.tmp* %VTEXI%.tmp* maintainer-clean-am: maintainer-clean-%VTI% maintainer-clean-%VTI%: -- cgit v1.2.1 From 5b3b1c83b47c1e29629049046b982636938d2b5d Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 17 Dec 2014 15:14:16 +0100 Subject: Expose automake bug#19311 AC_PROG_CC called before AC_CONFIG_AUX_DIR can silently force wrong $ac_aux_dir definition. * t/auxdir-pr19311.sh: New. * t/list-of-tests.mk: Add it as an XFAIL test. Signed-off-by: Stefano Lattarini --- t/auxdir-pr19311.sh | 45 +++++++++++++++++++++++++++++++++++++++++++++ t/list-of-tests.mk | 2 ++ 2 files changed, 47 insertions(+) create mode 100644 t/auxdir-pr19311.sh diff --git a/t/auxdir-pr19311.sh b/t/auxdir-pr19311.sh new file mode 100644 index 000000000..56c71a10a --- /dev/null +++ b/t/auxdir-pr19311.sh @@ -0,0 +1,45 @@ +#! /bin/sh +# Copyright (C) 2014 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 . + +# Automake bug#19311: AC_PROG_CC called before AC_CONFIG_AUX_DIR can +# silently force wrong $ac_aux_dir definition. + +am_create_testdir=empty +required=cc +. test-init.sh + +cat > configure.ac < Makefile.am + +mkdir build-aux + +$ACLOCAL +$AUTOMAKE -a +$AUTOCONF + +test -f build-aux/compile +test -f build-aux/install-sh + +./configure + +: diff --git a/t/list-of-tests.mk b/t/list-of-tests.mk index e6ee8569b..8d458f55e 100644 --- a/t/list-of-tests.mk +++ b/t/list-of-tests.mk @@ -30,6 +30,7 @@ t/pm/Version3.pl XFAIL_TESTS = \ t/all.sh \ +t/auxdir-pr19311.sh \ t/cond17.sh \ t/gcj6.sh \ t/override-conditional-2.sh \ @@ -185,6 +186,7 @@ t/auxdir-autodetect.sh \ t/auxdir-computed.tap \ t/auxdir-misplaced.sh \ t/auxdir-nonexistent.sh \ +t/auxdir-pr19311.sh \ t/auxdir-unportable.tap \ t/backcompat.sh \ t/backcompat2.sh \ -- cgit v1.2.1 From 3f9fc60baa2e7f9324e17a26f592e92148b7117c Mon Sep 17 00:00:00 2001 From: Thomas Jahns Date: Thu, 7 Aug 2014 11:03:06 +0200 Subject: Fix dumb logic error preventing $install_sh from being be overridden * m4/install-sh.m4: Here. * THANKS: Update. Signed-off-by: Stefano Lattarini --- THANKS | 1 + m4/install-sh.m4 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/THANKS b/THANKS index eef67c353..6fd71150c 100644 --- a/THANKS +++ b/THANKS @@ -393,6 +393,7 @@ Theodoros V. Kalamatianos thkala@gmail.com Thien-Thi Nguyen ttn@glug.org Thomas Fitzsimmons fitzsim@redhat.com Thomas Gagne tgagne@ix.netcom.com +Thomas Jahns jahns@dkrz.de Thomas Klausner tk@giga.or.at Thomas Morgan tmorgan@pobox.com Thomas Schwinge tschwinge@gnu.org diff --git a/m4/install-sh.m4 b/m4/install-sh.m4 index 094c10a85..16a3d9c33 100644 --- a/m4/install-sh.m4 +++ b/m4/install-sh.m4 @@ -10,7 +10,7 @@ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -if test x"${install_sh}" != xset; then +if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; -- cgit v1.2.1 From 86b397b6e4aa0dd5f29030dfb48e72afd7ae413a Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 30 Dec 2014 15:20:00 +0100 Subject: NEWS: improve and adjust in light of the oncoming 1.15 release Signed-off-by: Stefano Lattarini --- NEWS | 63 ++++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 40 insertions(+), 23 deletions(-) diff --git a/NEWS b/NEWS index 2649698ac..dcbf65716 100644 --- a/NEWS +++ b/NEWS @@ -97,16 +97,43 @@ New in 1.15: extra useless "make all" recursive invocation in some corner cases (automake bug#16302). -* Bugs fixed: +* Distribution: - - The expansion of AM_INIT_AUTOMAKE ends once again with a trailing - newline (bug#16841). Regression introduced in Automake 1.14. + - Automake bug#18286: "make distcheck" could sometimes fail to detect + missing files in the distribution tarball, especially in those cases + where both the generated files and their dependencies are explicitly + in $(srcdir). An important example of this are *generated* makefile + fragments included at Automake time in Makefile.am; e.g.: - - The user can now extend the special .PRECIOUS target, the same way - he could already do with the .MAKE .and .PHONY targets. + ... + $(srcdir)/fragment.am: $(srcdir)/data.txt $(srcdir)/preproc.sh + cd $(srcdir) && $(SHELL) preproc.sh fragment.am + include $(srcdir)/fragment.am + ... - - Fixed confusing typos in the manual and in some warning messages - (automake bug#16827 and bug#16997). + If the use forgot to add data.txt and/or preproc.sh in the distribution + tarball, "make distcheck" would have erroneously succeeded! This issue + is now fixed. + + - As a consequence of the previous change, "make distcheck" will run + using '$(distdir)/_build/sub' as the build directory, rather than + simply '$(distdir)/_build' (as it was with Automake 1.14 and earlier). + Consequently, the './configure' and 'make' invocations issued by the + distcheck recipe will have $(srcdir) equal to '../..', rather than to + just '..' (as it was with Automake 1.14 and earlier). Dependent and + similar variables (e.g., top_srcdir) are also changed accordingly. + + Thus, Makefiles that made assumptions about the exact values of the + build and source directories used by "make distcheck" will have to + be adjusted. Notice that making such assumptions was a bad and + unsupported practice anyway, since the exact locations of those + directories should be considered implementation details, and we + reserve the right to change them at any time. + +* Miscellaneous bugs fixed: + + - The expansion of AM_INIT_AUTOMAKE ends once again with a trailing + newline (bug#16841). Regression introduced in Automake 1.14. - We no longer risk to use '$ac_aux_dir' before it's defined (see automake bug#15981). Bug introduced in Automake 1.14. @@ -127,21 +154,11 @@ New in 1.15: something like "... overrides Automake target '$(srcdir)/foo.am". This bug is now fixed. - - Automake bug#18286: "make distcheck" could sometimes fail to detect - missing files in the distribution tarball, especially in those cases - where both the generated files and their dependencies are explicitly - in $(srcdir). An important example of this are *generated* makefile - fragments included at Automake time in Makefile.am; e.g.: - - ... - $(srcdir)/fragment.am: $(srcdir)/data.txt $(srcdir)/preproc.sh - cd $(srcdir) && $(SHELL) preproc.sh fragment.am - include $(srcdir)/fragment.am - ... + - The user can now extend the special .PRECIOUS target, the same way + he could already do with the .MAKE .and .PHONY targets. - If the use forgot to add data.txt and/or preproc.sh in the distribution - tarball, "make distcheck" would have erroneously succeeded! This issue - is now fixed. + - Fixed confusing typos in the manual and in some warning messages + (automake bug#16827 and bug#16997). ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -249,8 +266,8 @@ New in 1.14: Now that we have the 'info-in-builddir' option that explicitly causes generated '.info' files to be placed in the builddir, this hack should - be longer necessary, so we deprecate it with runtime warnings. It will - likely be removed altogether in Automake 2.0. + be longer necessary, so we deprecate it with runtime warnings. + It will be removed altogether in Automake 2.0. * Relative directory in Makefile fragments: -- cgit v1.2.1 From 4cb0327adc1f085f4b9bacd0e6e1c2d7a88b92f6 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 30 Dec 2014 20:45:48 +0100 Subject: docs: "make distcheck" implementation details are not to be abused * doc/automake.texi: State explicitly and in detail that the exact location and the exact structure of the subdirectory used by "make distcheck" is to be considered an implementation detail, which can change at any time. Signed-off-by: Stefano Lattarini --- doc/automake.texi | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/doc/automake.texi b/doc/automake.texi index fb6c05f1c..383a8116c 100644 --- a/doc/automake.texi +++ b/doc/automake.texi @@ -1242,8 +1242,12 @@ uninstall} do not omit any file (@pxref{Standard Targets}), and it checks that @code{DESTDIR} installations work (@pxref{DESTDIR}). @end itemize -All of these actions are performed in a temporary subdirectory, so -that no root privileges are required. +All of these actions are performed in a temporary directory, so that no +root privileges are required. Please note that the exact location and the +exact structure of such a subdirectory (where the extracted sources are +placed, how the temporary build and install directories are named and how +deeply they are nested, etc.) is to be considered an implementation detail, +which can change at any time; so do not rely on it. Releasing a package that fails @code{make distcheck} means that one of the scenarios we presented will not work and some users will be @@ -8555,6 +8559,13 @@ finally, makes another tarball to ensure the distribution is self-contained. @end itemize +All of these actions are performed in a temporary directory. Please +note that the exact location and the exact structure of such a directory +(where the read-only sources are placed, how the temporary build and +install directories are named and how deeply they are nested, etc.) is +to be considered an implementation detail, which can change at any time; +so do not reply on it. + @vindex AM_DISTCHECK_CONFIGURE_FLAGS @vindex DISTCHECK_CONFIGURE_FLAGS @subheading DISTCHECK_CONFIGURE_FLAGS -- cgit v1.2.1 From e443cc9ca68ebbcd756b8cd4ceb6e104c6c25930 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 31 Dec 2014 00:02:30 +0100 Subject: NEWS: minor improvements and fixed some typos and grammaros Signed-off-by: Stefano Lattarini --- NEWS | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/NEWS b/NEWS index dcbf65716..84a5e0a43 100644 --- a/NEWS +++ b/NEWS @@ -35,8 +35,8 @@ with the SGI C/C++ compilers on IRIX. The SGI depmode has been reported broken "in the wild" already, and we don't think investing time in debugging and fixing is worthwhile, especially considering - that SGI has last updated those compilers in 2006, and is expected - to retire support for them in December 2013: + that SGI has last updated those compilers in 2006, and retired + support for them in December 2013: - Automake 2.0 will remove support for MS-DOS and Windows 95/98/ME @@ -73,24 +73,24 @@ New in 1.15: (3) the "set -f" and "set +f" shell commands work, and, respectively, disable and enable shell globbing. - - The script implements stricter error checking, an it will now complain - and bail out if: - (1) the options -d and -t are used together; - (2) the argument passed to option -t must be a directory; + - The script implements stricter error checking, and now it complains + and bails out if any of the following expectations is not met: + (1) the options -d and -t are never used together; + (2) the argument passed to option -t is a directory; (3) if there are two or more SOURCEFILE arguments, the DESTINATION argument must be a directory. * Automake-generated testsuites: - The default test-driver used by the Automake-generates testsuites - now append the result and exit status of each "plain" test to the + now appends the result and exit status of each "plain" test to the associated log file (automake bug#11814). - The perl implementation of the TAP testsuite driver is no longer installed in the Automake's scripts directory, and is instead just distributed as a "contrib" addition. There should be no reason to use this implementation anyway in real packages, since the awk+shell - implementation of the TAP driver (that is documented in the manual) + implementation of the TAP driver (which is documented in the manual) is more portable and has feature parity with the perl implementation. - The rule generating 'test-suite.log' no longer risk incurring in an @@ -100,7 +100,7 @@ New in 1.15: * Distribution: - Automake bug#18286: "make distcheck" could sometimes fail to detect - missing files in the distribution tarball, especially in those cases + files missing from the distribution tarball, especially in those cases where both the generated files and their dependencies are explicitly in $(srcdir). An important example of this are *generated* makefile fragments included at Automake time in Makefile.am; e.g.: @@ -117,11 +117,11 @@ New in 1.15: - As a consequence of the previous change, "make distcheck" will run using '$(distdir)/_build/sub' as the build directory, rather than - simply '$(distdir)/_build' (as it was with Automake 1.14 and earlier). - Consequently, the './configure' and 'make' invocations issued by the - distcheck recipe will have $(srcdir) equal to '../..', rather than to - just '..' (as it was with Automake 1.14 and earlier). Dependent and - similar variables (e.g., top_srcdir) are also changed accordingly. + simply '$(distdir)/_build' (as it was the case for Automake 1.14 and + earlier). Consequently, the './configure' and 'make' invocations + issued by the distcheck recipe now have $(srcdir) equal to '../..', + rather than to just '..'. Dependent and similar variables (e.g., + '$(top_srcdir)') are also changed accordingly. Thus, Makefiles that made assumptions about the exact values of the build and source directories used by "make distcheck" will have to @@ -148,17 +148,17 @@ New in 1.15: hash keys order in Perl 5.18. - In older Automake versions, if a user defined one single Makefile - fragment (say 'foo.am') to be included (via Automake includes) in + fragment (say 'foo.am') to be included via Automake includes in his main Makefile.am, and defined a custom make rule to generate that - file from other data, Automake used to spuriously complain about with - something like "... overrides Automake target '$(srcdir)/foo.am". + file from other data, Automake used to spuriously complain with some + message like "... overrides Automake target '$(srcdir)/foo.am". This bug is now fixed. - The user can now extend the special .PRECIOUS target, the same way he could already do with the .MAKE .and .PHONY targets. - - Fixed confusing typos in the manual and in some warning messages - (automake bug#16827 and bug#16997). + - Some confusing typos have been fixed in the manual and in few warning + messages (automake bug#16827 and bug#16997). ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- cgit v1.2.1 From db43dd473361d90d8b00362cfef5bac8e722000d Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Wed, 31 Dec 2014 00:05:23 +0100 Subject: release: stable minor release 1.15 * configure.ac (AC_INIT): Bump version number to 1.15. * m4/amversion.m4: Likewise (auto-updated by "make bootstrap"). Signed-off-by: Stefano Lattarini --- configure.ac | 2 +- m4/amversion.m4 | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 0fed54803..beb9eabd7 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ # along with this program. If not, see . AC_PREREQ([2.69]) -AC_INIT([GNU Automake], [1.14a], [bug-automake@gnu.org]) +AC_INIT([GNU Automake], [1.15], [bug-automake@gnu.org]) AC_CONFIG_SRCDIR([bin/automake.in]) AC_CONFIG_AUX_DIR([lib]) diff --git a/m4/amversion.m4 b/m4/amversion.m4 index f0cf7ad12..ca4231f74 100644 --- a/m4/amversion.m4 +++ b/m4/amversion.m4 @@ -12,10 +12,10 @@ # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.14a' +[am__api_version='1.15' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.14a], [], +m4_if([$1], [1.15], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -31,7 +31,7 @@ m4_define([_AM_AUTOCONF_VERSION], []) # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.14a])dnl +[AM_AUTOMAKE_VERSION([1.15])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) -- cgit v1.2.1