mirror of
git://git.sv.gnu.org/autoconf
synced 2025-02-11 13:51:04 +08:00
Look for AM_PROG_LIBTOOL too
This helps out dh-autoreconf on Debian <https://bugs.debian.org/759739>. * bin/autoreconf.in (autoreconf_current_directory): * lib/autom4te.in (args): Look for AM_PROG_LIBTOOL too. Copyright-paperwork-exempt: Yes
This commit is contained in:
parent
8a09003664
commit
9019c72d8f
@ -398,6 +398,7 @@ sub autoreconf_current_directory ()
|
||||
'AC_CONFIG_SUBDIRS',
|
||||
'AC_INIT',
|
||||
'AC_PROG_LIBTOOL',
|
||||
'AM_PROG_LIBTOOL',
|
||||
'LT_INIT',
|
||||
'LT_CONFIG_LTDL_DIR',
|
||||
'AM_GNU_GETTEXT',
|
||||
@ -412,6 +413,7 @@ sub autoreconf_current_directory ()
|
||||
$uses_autoconf = 1 if $macro eq "AC_INIT";
|
||||
$uses_gettext_via_traces = 1 if $macro eq "AM_GNU_GETTEXT";
|
||||
$uses_libtool = 1 if $macro eq "AC_PROG_LIBTOOL"
|
||||
|| $macro eq "AM_PROG_LIBTOOL"
|
||||
|| $macro eq "LT_INIT";
|
||||
$uses_libltdl = 1 if $macro eq "LT_CONFIG_LTDL_DIR";
|
||||
$uses_autoheader = 1 if $macro eq "AC_CONFIG_HEADERS";
|
||||
|
@ -98,6 +98,7 @@ args: --preselect AC_CONFIG_MACRO_DIR_TRACE
|
||||
args: --preselect AC_CONFIG_SUBDIRS
|
||||
args: --preselect AC_INIT
|
||||
args: --preselect AC_PROG_LIBTOOL
|
||||
args: --preselect AM_PROG_LIBTOOL
|
||||
args: --preselect LT_INIT
|
||||
args: --preselect LT_CONFIG_LTDL_DIR
|
||||
args: --preselect AM_GNU_GETTEXT
|
||||
|
Loading…
Reference in New Issue
Block a user