]> sourceware.org Git - automake.git/commitdiff
* lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 17 May 2006 02:03:02 +0000 (02:03 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 17 May 2006 02:03:02 +0000 (02:03 +0000)
`$configure_in' instead of `configure.in', to preserve
directory component.
* lib/Automake/Configure_ac.pm: Add note that Automake owns
this file.
* lib/Automake/Channels.pm: Likewise.
* lib/Automake/FileUtils.pm: Likewise.
* lib/Automake/Struct.pm: Likewise.

ChangeLog
lib/Automake/Channels.pm
lib/Automake/Configure_ac.pm
lib/Automake/FileUtils.pm
lib/Automake/Struct.pm

index cfac451781749037af21d3144f793fed94669c6e..23ad00dcd12d0bcbcc536b2e76ce7802dca566b5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
+       `$configure_in' instead of `configure.in', to preserve
+       directory component.
+       * lib/Automake/Configure_ac.pm: Add note that Automake owns
+       this file.
+       * lib/Automake/Channels.pm: Likewise.
+       * lib/Automake/FileUtils.pm: Likewise.
+       * lib/Automake/Struct.pm: Likewise.
+
 2006-05-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * INSTALL, lib/config.guess, lib/config.sub, lib/texinfo.tex:
index db4b02c9bf7258a8ab86b717718ad755860febb5..43c903d51113476b0620c935472593636cd381dd 100644 (file)
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 # 02110-1301, USA.
 
+###############################################################
+# The main copy of this file is in Automake's CVS repository. #
+# Updates should be sent to automake-patches@gnu.org.         #
+###############################################################
+
 package Automake::Channels;
 
 =head1 NAME
index fb9f018cc0396b3570da0a212fe88137afc894be..caaad0701a35bc1e003ed8246c56e613d45aca5d 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
+# Copyright (C) 2003, 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
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 # 02110-1301, USA.
 
+###############################################################
+# The main copy of this file is in Automake's CVS repository. #
+# Updates should be sent to automake-patches@gnu.org.         #
+###############################################################
+
 package Automake::Configure_ac;
 
 use strict;
@@ -67,7 +72,7 @@ sub find_configure_ac (;@)
        }
       return $configure_ac
     }
-  elsif (-f 'configure.in')
+  elsif (-f $configure_in)
     {
       return $configure_in;
     }
index 3524dd409c561d0ef65661b1d29d81cb483198d6..acc0fc3a76307bf9bf49304ceac0caa4f166e563 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2004, 2005  Free Software Foundation, Inc.
+# Copyright (C) 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
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 # 02110-1301, USA.
 
+###############################################################
+# The main copy of this file is in Automake's CVS repository. #
+# Updates should be sent to automake-patches@gnu.org.         #
+###############################################################
+
 package Automake::FileUtils;
 
 =head1 NAME
index 5abed1a32f0666d7c98d6d60c5d8d0c54b5a2c24..484e4fb05ace15b33e90caa8785eeaa8a5c961f5 100644 (file)
@@ -1,5 +1,5 @@
 # autoconf -- create `configure' using m4 macros
-# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 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
 # if we `use' a Perl module (e.g., File::stat) that uses Class::Struct,
 # we would have two packages defining the same symbols.  Boom.
 
+###############################################################
+# The main copy of this file is in Automake's CVS repository. #
+# Updates should be sent to automake-patches@gnu.org.         #
+###############################################################
+
 package Automake::Struct;
 
 ## See POD after __END__
This page took 0.036843 seconds and 5 git commands to generate.