* bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.

* bin/autoupdate.in: Ditto.
* bin/autoheader.in: Reworded a few comments.
* bin/autoconf.in: Reworded help text for a few options.
* bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
* bin/autoscan.in, bin/autoupdate.in: Ditto.
This commit is contained in:
Tim Van Holder 2001-09-20 14:55:49 +00:00
parent 6cd8d1f6c1
commit 79bc254fde
7 changed files with 28 additions and 13 deletions

View File

@ -1,3 +1,12 @@
2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
* bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
* bin/autoupdate.in: Ditto.
* bin/autoheader.in: Reworded a few comments.
* bin/autoconf.in: Reworded help text for a few options.
* bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
* bin/autoscan.in, bin/autoupdate.in: Ditto.
2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
* lib/Autom4te/XFile.pm (open): Simplified the error message (we

View File

@ -34,8 +34,8 @@ Operation modes:
-V, --version print version number, then exit
-v, --verbose verbosely report processing
-d, --debug don't remove temporary files
-I, --include=DIR look for input files in DIR. Accumulates
-f, --force consider all the files are obsolete
-I, --include=DIR look for input files in DIR (cumulative)
-f, --force consider all files obsolete
-o, --output=FILE save output in FILE (stdout is the default)
-W, --warnings=CATEGORY report the warnings falling in CATEGORY [syntax]

View File

@ -66,8 +66,8 @@ or else \`configure.in\'.
-V, --version print version number, then exit
-v, --verbose verbosely report processing
-d, --debug don\'t remove temporary files
-I, --include=DIR look for input files in DIR. Accumulates
-f, --force consider all the files are obsolete
-I, --include=DIR look for input files in DIR (cumulative)
-f, --force consider all files obsolete
-W, --warnings=CATEGORY report the warnings falling in CATEGORY
Warning categories include:
@ -203,7 +203,7 @@ if ($config_h_top)
}
}
# Dump `acconfig.h' but its bottom.
# Dump `acconfig.h', except for its bottom portion.
if ($acconfig_h)
{
my $in = new Autom4te::XFile ($acconfig_h);
@ -221,7 +221,7 @@ foreach (sort keys %verbatim)
print $out "$verbatim{$_}\n";
}
# Dump `acconfig.h' bottom.
# Dump bottom portion of `acconfig.h'.
if ($acconfig_h)
{
my $in = new Autom4te::XFile ($acconfig_h);

View File

@ -390,7 +390,7 @@ Warning categories include:
The environment variable \`WARNINGS\' is honored.
Library directories:
-I, --include=DIR look for FILES in DIR. Several invocations accumulate
-I, --include=DIR look for FILES in DIR (cumulative)
Tracing:
-t, --trace=MACRO report the MACRO invocations
@ -627,7 +627,7 @@ sub handle_output ($$)
}
else
{
$out->open($output, O_CREAT | O_WRONLY | O_TRUNC, oct ($mode))
$out->open($output, O_CREAT | O_WRONLY | O_TRUNC, oct ($mode));
}
die "$me: cannot create $output: $!\n"
unless $out;

View File

@ -36,7 +36,7 @@ Operation modes:
-V, --version print version number, then exit
-v, --verbose verbosely report processing
-d, --debug don't remove temporary files
-f, --force consider all the files are obsolete
-f, --force consider all files obsolete
-i, --install copy missing auxiliary files
-s, --symlink instead of copying, install symbolic links
@ -44,7 +44,7 @@ The option \`--install' is similar to the option \`--add-missing' in
other tools.
Library directories:
-A, --autoconf-dir=ACDIR Autoconf's macro files location (rarely needed)
-A, --autoconf-dir=ACDIR location of Autoconf's macro files (rarely needed)
-l, --localdir=DIR location of \`aclocal.m4' and \`acconfig.h'
-M, --m4dir=M4DIR this package's Autoconf extensions

View File

@ -20,6 +20,9 @@
# Written by David MacKenzie <djm@gnu.ai.mit.edu>.
eval 'exec @PERL@ -S $0 ${1+"$@"}'
if 0;
BEGIN
{
my $perllibdir = $ENV{'autom4te_perllibdir'} || "@datadir@";
@ -86,7 +89,7 @@ preliminary `configure.ac' for that package.
-V, --version print version number, then exit
-v, --verbose verbosely report processing
-d, --debug don't remove temporary files
-I, --include=DIR look for input files in DIR. Accumulates
-I, --include=DIR look for input files in DIR (cumulative)
Report bugs to <bug-autoconf\@gnu.org>.\n";

View File

@ -21,6 +21,9 @@
# Originally written by David MacKenzie <djm@gnu.ai.mit.edu>.
# Rewritten by Akim Demaille <akim@freefriends.org>.
eval 'exec @PERL@ -S $0 ${1+"$@"}'
if 0;
BEGIN
{
my $perllibdir = $ENV{'autom4te_perllibdir'} || "@datadir@";
@ -55,8 +58,8 @@ Operation modes:
-V, --version print version number, then exit
-v, --verbose verbosely report processing
-d, --debug don't remove temporary files
-I, --include=DIR look for input files in DIR. Accumulates
-f, --force consider all the files are obsolete
-I, --include=DIR look for input files in DIR (cumulative)
-f, --force consider all files obsolete
Report bugs to <bug-autoconf\@gnu.org>.
";