* tests/txinfo13.test: Test fix below.
2006-01-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* lib/am/texinfos.am (dist-info): Tighten glob to avoid unwanted
extra files in distribution. Reported by Vincent Lefevre.
+2006-01-12 Alexandre Duret-Lutz <adl@gnu.org>
+
+ * tests/txinfo13.test: Test fix below.
+
+2006-01-12 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ * lib/am/texinfos.am (dist-info): Tighten glob to avoid unwanted
+ extra files in distribution. Reported by Vincent Lefevre.
+
2006-01-06 Alexandre Duret-Lutz <adl@gnu.org>
* doc/automake.texi (Linking, Program and Library Variables):
## automake - create Makefile.in from Makefile.am
## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-## 2003, 2004, 2005 Free Software Foundation, Inc.
+## 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
$(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
esac; \
if test -f $$base; then d=.; else d=$(srcdir); fi; \
- for file in $$d/$$base*; do \
+ base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
+ for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
+ if test -f $$file; then \
## Strip leading '$$d/'.
- relfile=`expr "$$file" : "$$d/\(.*\)"`; \
- test -f $(distdir)/$$relfile || \
- cp -p $$file $(distdir)/$$relfile; \
+ relfile=`expr "$$file" : "$$d/\(.*\)"`; \
+ test -f $(distdir)/$$relfile || \
+ cp -p $$file $(distdir)/$$relfile; \
+ else :; fi; \
done; \
done
endif %?LOCAL-TEXIS%
#! /bin/sh
-# Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2003, 2006 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
-# Check for subdir Texinfo.
-# PR/343
+# Check for subdir Texinfo (PR/343)
+# Also make sure we do not distribute too much foo.info* files (Report
+# from Vincent Lefevre)
required='makeinfo tex texi2dvi-o'
. ./defs || exit 1
installcheck-local:
test -f $(infodir)/main.info
+check-local:
+ test ! -f $(srcdir)/subdir/main.info.bak
END
mkdir subdir
I'm included.
END
+touch subdir/main.info.bak
$ACLOCAL
$AUTOMAKE --add-missing
$MAKE distcheck
test -f ../subdir/main.info
test ! -f subdir/main.info
+test -f ../subdir/main.info.bak