From: Ralf Wildenhues Date: Wed, 17 May 2006 02:03:04 +0000 (+0000) Subject: * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use X-Git-Tag: Release-1-9b~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00ce7b9227e37d856ec574d7f07246ff6c7f3d3c;p=thirdparty%2Fautomake.git * 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. --- diff --git a/ChangeLog b/ChangeLog index cfac45178..23ad00dcd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2006-05-17 Ralf Wildenhues + + * 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 * INSTALL, lib/config.guess, lib/config.sub, lib/texinfo.tex: diff --git a/lib/Automake/Channels.pm b/lib/Automake/Channels.pm index db4b02c9b..43c903d51 100644 --- a/lib/Automake/Channels.pm +++ b/lib/Automake/Channels.pm @@ -15,6 +15,11 @@ # 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 diff --git a/lib/Automake/Configure_ac.pm b/lib/Automake/Configure_ac.pm index fb9f018cc..caaad0701 100644 --- a/lib/Automake/Configure_ac.pm +++ b/lib/Automake/Configure_ac.pm @@ -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 @@ -15,6 +15,11 @@ # 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; } diff --git a/lib/Automake/FileUtils.pm b/lib/Automake/FileUtils.pm index 3524dd409..acc0fc3a7 100644 --- a/lib/Automake/FileUtils.pm +++ b/lib/Automake/FileUtils.pm @@ -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 @@ -15,6 +15,11 @@ # 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 diff --git a/lib/Automake/Struct.pm b/lib/Automake/Struct.pm index 5abed1a32..484e4fb05 100644 --- a/lib/Automake/Struct.pm +++ b/lib/Automake/Struct.pm @@ -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 @@ -22,6 +22,11 @@ # 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__