texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo/tp/maintain regenerate_file_lists.pl


From: karl
Subject: texinfo/tp/maintain regenerate_file_lists.pl
Date: Tue, 13 Nov 2012 23:51:32 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     karl <karl>     12/11/13 23:51:32

Modified files:
        tp/maintain    : regenerate_file_lists.pl 

Log message:
        oops, expand value

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/maintain/regenerate_file_lists.pl?cvsroot=texinfo&r1=1.9&r2=1.10

Patches:
Index: regenerate_file_lists.pl
===================================================================
RCS file: /sources/texinfo/texinfo/tp/maintain/regenerate_file_lists.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- regenerate_file_lists.pl    13 Nov 2012 23:46:32 -0000      1.9
+++ regenerate_file_lists.pl    13 Nov 2012 23:51:32 -0000      1.10
@@ -1,5 +1,5 @@
 #! /usr/bin/perl -w
-# $Id: regenerate_file_lists.pl,v 1.9 2012/11/13 23:46:32 karl Exp $
+# $Id: regenerate_file_lists.pl,v 1.10 2012/11/13 23:51:32 karl Exp $
 # Copyright 2011, 2012 Free Software Foundation, Inc.
 #
 # This file is free software; as a special exception the author gives
@@ -44,7 +44,21 @@
 }
 #print STDERR join('|', keys(%include_files))."\n";
 
-open (INCLUDE, '>Makefile.tres') or die "Open >Makefile.tres: $!";
+open (INCLUDE, '>Makefile.tres') or die "open(>Makefile.tres) failed: $!";
+print INCLUDE <<EOH;
+# Makefile.tres generated by $0.
+#
+# Copyright 2012 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
+# modifications, as long as this notice is preserved.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
+# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+EOH
+
 print INCLUDE "test_files_generated_list =";
 foreach my $file (sort(keys(%files)), sort(keys(%include_files))) {
   print INCLUDE " \\\n  $file";
@@ -59,7 +73,7 @@
   $test_copied_include_files .= " t/include_dir/$bfile";
 
   print INCLUDE "t/include_dir/$bfile: $include_file t/include_dir\n"
-     ."\t".'$(INSTALL_DATA) $include_file $@'."\n\n";
+     ."\t".'$(INSTALL_DATA) '.$include_file.' $@'."\n\n";
 }
 
 print INCLUDE $test_copied_include_files ."\n\n";



reply via email to

[Prev in Thread] Current Thread [Next in Thread]