mirror of
git://git.sv.gnu.org/autoconf
synced 2024-12-03 02:00:36 +08:00
bf0d5c6195
* bin/autoupdate.in: Use --include, -I, and --force, -f, too. Use directly autom4te, not autoconf. * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
15 lines
494 B
Bash
Executable File
15 lines
494 B
Bash
Executable File
#! /bin/sh
|
|
# Running `autoupdate' as if it were installed.
|
|
|
|
. ./atconfig
|
|
|
|
# Be sure to use the non installed Perl modules.
|
|
# We need no special protection for the subtools (e.g., autoheader runs
|
|
# autoconf which runs autom4te) because by themselves, they try to use
|
|
# subtools from the same directory (i.e., foo/autoheader will run
|
|
# foo/autoconf etc.).
|
|
autom4te_perllibdir=$top_srcdir/lib
|
|
export autom4te_perllibdir
|
|
|
|
exec ../bin/autoupdate --include ../lib --include $top_srcdir/lib ${1+"$@"}
|