diff options
author | Eric Blake <ebb9@byu.net> | 2006-10-16 20:58:44 +0000 |
---|---|---|
committer | Eric Blake <ebb9@byu.net> | 2006-10-16 20:58:44 +0000 |
commit | c94a13830042e840802cb8a27bfe5ba603544da0 (patch) | |
tree | 11bc562b701e690ede65cd147dfc399881e2346f /bin/autoreconf.in | |
parent | 25cb6b0862e329bd8c1d6ab0d09aad4c70751476 (diff) | |
download | autoconf-c94a13830042e840802cb8a27bfe5ba603544da0.tar.gz |
* bin/autoconf.as (version): Reword to match GNU Coding
Standards.
* bin/autoheader.in (version): Likewise.
* bin/autom4te.in (version): Likewise.
* bin/autoreconf.in (version): Likewise.
* bin/autoscan.in (version): Likewise.
* bin/autoupdate.in (version): Likewise.
* bin/ifnames.in (version): Likewise.
Diffstat (limited to 'bin/autoreconf.in')
-rw-r--r-- | bin/autoreconf.in | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/bin/autoreconf.in b/bin/autoreconf.in index c224d939..c063987a 100644 --- a/bin/autoreconf.in +++ b/bin/autoreconf.in @@ -97,11 +97,12 @@ Report bugs to <bug-autoconf\@gnu.org>. # $VERSION # -------- $version = "autoreconf (@PACKAGE_NAME@) @VERSION@ -Written by David J. MacKenzie and Akim Demaille. - Copyright (C) 2006 Free Software Foundation, Inc. -This is free software; see the source for copying conditions. There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +This is free software. You may redistribute copies of it under the terms of +the GNU General Public License <http://www.gnu.org/licenses/gpl.html>. +There is NO WARRANTY, to the extent permitted by law. + +Written by David J. MacKenzie and Akim Demaille. "; # Lib files. @@ -319,13 +320,13 @@ sub autoreconf_current_directory () { my $configure_ac_file = new Autom4te::XFile $configure_ac; while ($_ = $configure_ac_file->getline) - { - s/#.*//; - s/dnl.*//; - $uses_autoconf = 1 if /AC_INIT/; - # See below for why we look for gettext here. - $uses_gettext = 1 if /^AM_GNU_GETTEXT_VERSION/; - } + { + s/#.*//; + s/dnl.*//; + $uses_autoconf = 1 if /AC_INIT/; + # See below for why we look for gettext here. + $uses_gettext = 1 if /^AM_GNU_GETTEXT_VERSION/; + } } if (!$uses_autoconf) { @@ -525,7 +526,7 @@ sub autoreconf_current_directory () elsif ($install) { if ($uses_libltdl) - { + { $libtoolize .= " --ltdl"; } xsystem ($libtoolize); |