[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[8273] list tp/t/include_reference files in tp/Makefile.am
From: |
gavinsmith0123 |
Subject: |
[8273] list tp/t/include_reference files in tp/Makefile.am |
Date: |
Sat, 13 Oct 2018 04:18:07 -0400 (EDT) |
Revision: 8273
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=8273
Author: gavin
Date: 2018-10-13 04:18:07 -0400 (Sat, 13 Oct 2018)
Log Message:
-----------
list tp/t/include_reference files in tp/Makefile.am
Modified Paths:
--------------
trunk/ChangeLog
trunk/tp/Makefile.am
trunk/tp/maintain/regenerate_file_lists.pl
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2018-10-13 08:03:34 UTC (rev 8272)
+++ trunk/ChangeLog 2018-10-13 08:18:07 UTC (rev 8273)
@@ -1,5 +1,11 @@
2018-10-13 Gavin Smith <address@hidden>
+ * tp/Makefile.am: List files under tp/t/include_reference.
+ * tp/maintain/regenerate_file_lists.pl: Do not automatically
+ generate a list of these files.
+
+2018-10-13 Gavin Smith <address@hidden>
+
* tp/maintain/regenerate_file_lists.pl:
Do not generate the variable 'test_copied_include_files'.
Remove copyright notice from generated file as the year is
Modified: trunk/tp/Makefile.am
===================================================================
--- trunk/tp/Makefile.am 2018-10-13 08:03:34 UTC (rev 8272)
+++ trunk/tp/Makefile.am 2018-10-13 08:18:07 UTC (rev 8273)
@@ -12,7 +12,7 @@
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-# Generated lists of tests and of test result files, and some rules.
+# Generated lists of tests and of test result files
include $(srcdir)/Makefile.tres
# Generated list of document string locale files and associated rules.
@@ -143,6 +143,13 @@
t/include/verbatim_encoded.texi \
t/include/verbatim_encoded_latin1.texi \
t/include/words.txt \
+ t/include_reference/f--ile.png \
+ t/include_reference/f--ile.txt \
+ t/include_reference/figure.txt \
+ t/include_reference/inc_file.texi \
+ t/include_reference/incl-incl.txi \
+ t/include_reference/macro_included.texi \
+ t/include_reference/section_file.texi \
t/init/only_toc_out.init \
t/init/cvs.init \
t/init/redefine_need.init \
Modified: trunk/tp/maintain/regenerate_file_lists.pl
===================================================================
--- trunk/tp/maintain/regenerate_file_lists.pl 2018-10-13 08:03:34 UTC (rev
8272)
+++ trunk/tp/maintain/regenerate_file_lists.pl 2018-10-13 08:18:07 UTC (rev
8273)
@@ -1,6 +1,7 @@
#! /usr/bin/env perl
# $Id$
-# Copyright 2011, 2012, 2013, 2014, 2015, 2016 Free Software Foundation, Inc.
+# Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 Free Software
+# Foundation, Inc.
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
@@ -48,17 +49,6 @@
}
}
-my %include_files;
-find (\&wanted_include_files, ('t'));
-sub wanted_include_files
-{
- if (/\.[a-z]+$/ and !/^\.svn$/
- and $File::Find::dir =~ m:^t/include_reference:) {
- $include_files{$File::Find::name} = 1;
- }
-}
-#print STDERR join('|', keys(%include_files))."\n";
-
open (INCLUDE, '>Makefile.tres') or die "open(>Makefile.tres) failed: $!";
print INCLUDE <<EOH;
# Makefile.tres generated by $0.
@@ -72,7 +62,7 @@
print INCLUDE "\n\n";
print INCLUDE 'test_files_generated_list = $(test_tap_files_generated_list)';
-foreach my $file (sort(keys(%files)), sort(keys(%include_files))) {
+foreach my $file (sort(keys(%files))) {
print INCLUDE " \\\n $file";
}
print INCLUDE "\n\n";
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [8273] list tp/t/include_reference files in tp/Makefile.am,
gavinsmith0123 <=