From e8df2048c8a437b7aae22ed8661792cebd6696c0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 9 Jan 2004 18:27:12 +0000 Subject: . --- Makefile.in | 4 ++-- aclocal.m4 | 26 ++++++++++++++++++-------- doc/Makefile.in | 2 +- lib/Makefile.in | 2 +- m4/Makefile.in | 2 +- man/Makefile.in | 2 +- src/Makefile.in | 2 +- tests/Makefile.in | 4 ++-- tests/basename/Makefile.in | 2 +- tests/chgrp/Makefile.in | 2 +- tests/chmod/Makefile.in | 2 +- tests/chown/Makefile.in | 2 +- tests/cp/Makefile.in | 2 +- tests/cut/Makefile.in | 2 +- tests/date/Makefile.in | 2 +- tests/dd/Makefile.in | 2 +- tests/dircolors/Makefile.in | 2 +- tests/du/Makefile.in | 2 +- tests/expr/Makefile.in | 2 +- tests/factor/Makefile.in | 2 +- tests/fmt/Makefile.in | 2 +- tests/head/Makefile.in | 2 +- tests/install/Makefile.in | 2 +- tests/join/Makefile.in | 2 +- tests/ln/Makefile.in | 2 +- tests/ls-2/Makefile.in | 2 +- tests/ls/Makefile.in | 2 +- tests/md5sum/Makefile.in | 2 +- tests/misc/Makefile.in | 3 ++- tests/mkdir/Makefile.in | 2 +- tests/mv/Makefile.in | 2 +- tests/od/Makefile.in | 2 +- tests/pr/Makefile.in | 2 +- tests/rm/Makefile.in | 2 +- tests/rmdir/Makefile.in | 2 +- tests/seq/Makefile.in | 2 +- tests/sha1sum/Makefile.in | 2 +- tests/shred/Makefile.in | 2 +- tests/sort/Makefile.in | 2 +- tests/stty/Makefile.in | 2 +- tests/sum/Makefile.in | 2 +- tests/tac/Makefile.in | 2 +- tests/tail-2/Makefile.in | 2 +- tests/tail/Makefile.in | 2 +- tests/test/Makefile.in | 2 +- tests/touch/Makefile.in | 2 +- tests/tr/Makefile.in | 2 +- tests/tsort/Makefile.in | 2 +- tests/unexpand/Makefile.in | 2 +- tests/uniq/Makefile.in | 2 +- tests/wc/Makefile.in | 2 +- 51 files changed, 71 insertions(+), 60 deletions(-) diff --git a/Makefile.in b/Makefile.in index ad0b91310..51e88443d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 @@ -40,7 +40,7 @@ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ INSTALL NEWS THANKS TODO config/ChangeLog config/config.guess \ config/config.rpath config/config.sub config/depcomp \ config/install-sh config/mdate-sh config/missing \ - config/mkinstalldirs config/texinfo.tex configure configure.ac + config/mkinstalldirs config/texinfo.tex subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/acl.m4 $(top_srcdir)/m4/afs.m4 \ diff --git a/aclocal.m4 b/aclocal.m4 index 6064bd3e3..68f6dea30 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -# generated automatically by aclocal 1.8 -*- Autoconf -*- +# generated automatically by aclocal 1.8.0b -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Free Software Foundation, Inc. @@ -40,7 +40,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.8"]) # Call AM_AUTOMAKE_VERSION so it can be traced. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], - [AM_AUTOMAKE_VERSION([1.8])]) + [AM_AUTOMAKE_VERSION([1.8.0b])]) # AM_AUX_DIR_EXPAND @@ -689,7 +689,7 @@ fi # --------------- # Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. -# Copyright (C) 2003 Free Software Foundation, Inc. +# Copyright (C) 2003, 2004 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -706,23 +706,33 @@ fi # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. +# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories +# created by `make install' are always world readable, even if the +# installer happens to have an overly restrictive umask (e.g. 077). +# This was a mistake. There are at least two reasons why we must not +# use `-m 0755': +# - it causes special bits like SGID to be ignored, +# - it may be too restrictive (some setups expect 775 directories). +# +# Do not use -m 0755 and let people choose whatever they expect by +# setting umask. AC_DEFUN([AM_PROG_MKDIR_P], -[if mkdir -m 0755 -p -- . 2>/dev/null; then - mkdir_p='mkdir -m 0755 -p --' +[if mkdir -p -- . 2>/dev/null; then + mkdir_p='mkdir -p --' else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. - for d in ./-m ./0755 ./-p ./--; + for d in ./-p ./--; do test -d $d && rmdir $d done # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. if test -f "$ac_aux_dir/mkinstalldirs"; then - mkdir_p='$(mkinstalldirs) -m 0755' + mkdir_p='$(mkinstalldirs)' else - mkdir_p='$(install_sh) -m 0755 -d' + mkdir_p='$(install_sh) -d' fi fi AC_SUBST([mkdir_p])]) diff --git a/doc/Makefile.in b/doc/Makefile.in index c93b1b54c..956082e6f 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/lib/Makefile.in b/lib/Makefile.in index 16bd1ed1a..abec3973e 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/m4/Makefile.in b/m4/Makefile.in index dffbf6256..2630bf083 100644 --- a/m4/Makefile.in +++ b/m4/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/man/Makefile.in b/man/Makefile.in index a81896f31..6ece4b69b 100644 --- a/man/Makefile.in +++ b/man/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/src/Makefile.in b/src/Makefile.in index fa95246fc..e45587a63 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/Makefile.in b/tests/Makefile.in index 5ea936027..ac575509c 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 @@ -279,7 +279,7 @@ TESTS = help-version TESTS_ENVIRONMENT = \ all_programs="`$(all_programs)`" \ PACKAGE_BUGREPORT=$(PACKAGE_BUGREPORT) \ - PATH="`pwd`/../src/vg$(PATH_SEPARATOR)$$PATH" + PATH="`pwd`/../src$(PATH_SEPARATOR)$$PATH" EXTRA_DIST = \ $(TESTS) .env-warn Fetish.pm Makefile.am.in README envvar-check \ diff --git a/tests/basename/Makefile.in b/tests/basename/Makefile.in index af0eed979..2a38e32ed 100644 --- a/tests/basename/Makefile.in +++ b/tests/basename/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/chgrp/Makefile.in b/tests/chgrp/Makefile.in index ea15559e7..4333a05b0 100644 --- a/tests/chgrp/Makefile.in +++ b/tests/chgrp/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/chmod/Makefile.in b/tests/chmod/Makefile.in index 7dd9e3eb0..7324d907f 100644 --- a/tests/chmod/Makefile.in +++ b/tests/chmod/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/chown/Makefile.in b/tests/chown/Makefile.in index 5cb05569d..dcb5f1328 100644 --- a/tests/chown/Makefile.in +++ b/tests/chown/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/cp/Makefile.in b/tests/cp/Makefile.in index 6bfc0b804..cf9d9f940 100644 --- a/tests/cp/Makefile.in +++ b/tests/cp/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/cut/Makefile.in b/tests/cut/Makefile.in index 18a701a9d..ca3524b3b 100644 --- a/tests/cut/Makefile.in +++ b/tests/cut/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/date/Makefile.in b/tests/date/Makefile.in index 09bfe171e..21374729a 100644 --- a/tests/date/Makefile.in +++ b/tests/date/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/dd/Makefile.in b/tests/dd/Makefile.in index 6e5d33d62..4f21d27e3 100644 --- a/tests/dd/Makefile.in +++ b/tests/dd/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/dircolors/Makefile.in b/tests/dircolors/Makefile.in index 1748b1458..385bcc799 100644 --- a/tests/dircolors/Makefile.in +++ b/tests/dircolors/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/du/Makefile.in b/tests/du/Makefile.in index d834fb669..794a58f1c 100644 --- a/tests/du/Makefile.in +++ b/tests/du/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/expr/Makefile.in b/tests/expr/Makefile.in index 1e3f1c3c0..824d29c72 100644 --- a/tests/expr/Makefile.in +++ b/tests/expr/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/factor/Makefile.in b/tests/factor/Makefile.in index ddc84cb9d..5dea5c2cc 100644 --- a/tests/factor/Makefile.in +++ b/tests/factor/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/fmt/Makefile.in b/tests/fmt/Makefile.in index bf788ca85..ab1ff1a78 100644 --- a/tests/fmt/Makefile.in +++ b/tests/fmt/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/head/Makefile.in b/tests/head/Makefile.in index 5f5d18597..e79a14937 100644 --- a/tests/head/Makefile.in +++ b/tests/head/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/install/Makefile.in b/tests/install/Makefile.in index c12f10e1e..e9806c6e9 100644 --- a/tests/install/Makefile.in +++ b/tests/install/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/join/Makefile.in b/tests/join/Makefile.in index c333f6e47..0750a0957 100644 --- a/tests/join/Makefile.in +++ b/tests/join/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/ln/Makefile.in b/tests/ln/Makefile.in index 8d650b257..1308e3514 100644 --- a/tests/ln/Makefile.in +++ b/tests/ln/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/ls-2/Makefile.in b/tests/ls-2/Makefile.in index 0447a03f8..bb7ccc00a 100644 --- a/tests/ls-2/Makefile.in +++ b/tests/ls-2/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/ls/Makefile.in b/tests/ls/Makefile.in index b844c0324..ab6e99029 100644 --- a/tests/ls/Makefile.in +++ b/tests/ls/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/md5sum/Makefile.in b/tests/md5sum/Makefile.in index bb7b5e043..183d1bbf1 100644 --- a/tests/md5sum/Makefile.in +++ b/tests/md5sum/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/misc/Makefile.in b/tests/misc/Makefile.in index 73f7a7afb..534751de0 100644 --- a/tests/misc/Makefile.in +++ b/tests/misc/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 @@ -268,6 +268,7 @@ TESTS_ENVIRONMENT = \ TESTS = \ paste-no-nl \ stat-fmt \ + expand \ fold \ nohup \ readlink \ diff --git a/tests/mkdir/Makefile.in b/tests/mkdir/Makefile.in index 6f820c2ee..2c04ef6d3 100644 --- a/tests/mkdir/Makefile.in +++ b/tests/mkdir/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/mv/Makefile.in b/tests/mv/Makefile.in index 7fe21b495..9ab0e567f 100644 --- a/tests/mv/Makefile.in +++ b/tests/mv/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/od/Makefile.in b/tests/od/Makefile.in index 14982c183..bb2c2f25b 100644 --- a/tests/od/Makefile.in +++ b/tests/od/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/pr/Makefile.in b/tests/pr/Makefile.in index 89fd6bef8..8b3fa3917 100644 --- a/tests/pr/Makefile.in +++ b/tests/pr/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/rm/Makefile.in b/tests/rm/Makefile.in index 115f844a9..cb66c9204 100644 --- a/tests/rm/Makefile.in +++ b/tests/rm/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/rmdir/Makefile.in b/tests/rmdir/Makefile.in index 7cebefa4c..717d571e3 100644 --- a/tests/rmdir/Makefile.in +++ b/tests/rmdir/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/seq/Makefile.in b/tests/seq/Makefile.in index 9d9f79dc3..e2cfa7a86 100644 --- a/tests/seq/Makefile.in +++ b/tests/seq/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/sha1sum/Makefile.in b/tests/sha1sum/Makefile.in index 6eb10208f..2310663e4 100644 --- a/tests/sha1sum/Makefile.in +++ b/tests/sha1sum/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/shred/Makefile.in b/tests/shred/Makefile.in index 3dce234a9..356ed7938 100644 --- a/tests/shred/Makefile.in +++ b/tests/shred/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/sort/Makefile.in b/tests/sort/Makefile.in index f42b24b04..46f965a00 100644 --- a/tests/sort/Makefile.in +++ b/tests/sort/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/stty/Makefile.in b/tests/stty/Makefile.in index efa2d5ff1..99bf88f09 100644 --- a/tests/stty/Makefile.in +++ b/tests/stty/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/sum/Makefile.in b/tests/sum/Makefile.in index 077ac5855..1cb8616e0 100644 --- a/tests/sum/Makefile.in +++ b/tests/sum/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/tac/Makefile.in b/tests/tac/Makefile.in index ecbcc7052..53e113f7e 100644 --- a/tests/tac/Makefile.in +++ b/tests/tac/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/tail-2/Makefile.in b/tests/tail-2/Makefile.in index 0ef1bf87b..657518d4f 100644 --- a/tests/tail-2/Makefile.in +++ b/tests/tail-2/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/tail/Makefile.in b/tests/tail/Makefile.in index fac365c16..6ed661754 100644 --- a/tests/tail/Makefile.in +++ b/tests/tail/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/test/Makefile.in b/tests/test/Makefile.in index 2010dad5e..1b9195f01 100644 --- a/tests/test/Makefile.in +++ b/tests/test/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/touch/Makefile.in b/tests/touch/Makefile.in index 773488a92..b711804f5 100644 --- a/tests/touch/Makefile.in +++ b/tests/touch/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/tr/Makefile.in b/tests/tr/Makefile.in index 4a4b845e6..51a7226cf 100644 --- a/tests/tr/Makefile.in +++ b/tests/tr/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/tsort/Makefile.in b/tests/tsort/Makefile.in index 7cbfc607a..1daf15410 100644 --- a/tests/tsort/Makefile.in +++ b/tests/tsort/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/unexpand/Makefile.in b/tests/unexpand/Makefile.in index e0e905589..926bbd46c 100644 --- a/tests/unexpand/Makefile.in +++ b/tests/unexpand/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/uniq/Makefile.in b/tests/uniq/Makefile.in index 78fb45e8b..462525293 100644 --- a/tests/uniq/Makefile.in +++ b/tests/uniq/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 diff --git a/tests/wc/Makefile.in b/tests/wc/Makefile.in index 6c5a22263..11063f951 100644 --- a/tests/wc/Makefile.in +++ b/tests/wc/Makefile.in @@ -1,4 +1,4 @@ -# Makefile.in generated by automake 1.8 from Makefile.am. +# Makefile.in generated by automake 1.8.0b from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 -- cgit v1.2.3-54-g00ecf