* bin/autoreconf.in ($run_make): Renamed from ...
($make): ... this. Use now as command to run `make',
overridden by $MAKE. Document this in --help output.
* doc/autoconf.texi (autoreconf Invocation): Document
all environment variables honored by autoreconf.
* NEWS: Update.
Report by Paul Eggert.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+2008-03-03 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+
+ autoreconf -m now honors $MAKE.
+ * bin/autoreconf.in ($run_make): Renamed from ...
+ ($make): ... this. Use now as command to run `make',
+ overridden by $MAKE. Document this in --help output.
+ * doc/autoconf.texi (autoreconf Invocation): Document
+ all environment variables honored by autoreconf.
+ * NEWS: Update.
+ Report by Paul Eggert.
+
2008-03-03 Eric Blake <ebb9@byu.net>
Documentation improvements.
** The command 'autoconf -' now correctly processes a file from stdin.
+** 'autoreconf -m' now honors $MAKE.
+
** For all of the directory arguments for 'configure', such as '--prefix'
or '--bindir', trailing slashes are stripped. As an example, if
tab completion in the user's shell appends trailing slashes, the
-I, --include=DIR append directory DIR to search path
The environment variables AUTOCONF, AUTOHEADER, AUTOMAKE, ACLOCAL,
-AUTOPOINT, LIBTOOLIZE, M4 are honored.
+AUTOPOINT, LIBTOOLIZE, M4, and MAKE are honored.
Report bugs to <bug-autoconf\@gnu.org>.
";
my $aclocal = $ENV{'ACLOCAL'} || 'aclocal';
my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize';
my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint';
+my $make = $ENV{'MAKE'} || 'make';
# --install -- as --add-missing in other tools.
my $install = 0;
my @warning;
# Rerun `./configure && make'?
-my $make = 0;
+my $run_make = 0;
# Recurse into subpackages
my $recursive = 1;
'B|prepend-include=s' => \@prepend_include,
'i|install' => \$install,
's|symlink' => \$symlink,
- 'm|make' => \$make,
+ 'm|make' => \$run_make,
'recursive!' => \$recursive);
# Split the warnings as a list of elements instead of a list of
# Running make. #
# -------------- #
- if ($make)
+ if ($run_make)
{
if (!-f "config.status")
{
}
else
{
- xsystem ("make");
+ xsystem ("$make");
}
}
}
@command{autopoint} (when appropriate) repeatedly to update the
@acronym{GNU} Build System in the specified directories and their
subdirectories (@pxref{Subdirectories}). By default, it only remakes
-those files that are older than their sources.
+those files that are older than their sources. The environment variables
+@env{AUTOCONF}, @env{AUTOHEADER}, @env{AUTOMAKE}, @env{ACLOCAL},
+@env{AUTOPOINT}, @env{LIBTOOLIZE}, @env{M4}, and @env{MAKE} may be used
+to override the invocation of the respective tools.
If you install a new version of some tool, you can make
@command{autoreconf} remake @emph{all} of the files by giving it the