From 63904b29ca97eaae253ee24bd0becdf7a492a644 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sat, 17 Feb 2001 02:35:53 +0000 Subject: [PATCH] 2001-02-16 Alexandre Duret-Lutz * automake.in (scan_one_configure_file): Unquote AC_CONFIG_AUX_DIR's argument. --- ChangeLog | 5 +++++ automake.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e27863c0..6be6a38f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-02-16 Alexandre Duret-Lutz + + * automake.in (scan_one_configure_file): Unquote AC_CONFIG_AUX_DIR's + argument. + 2001-02-16 Alexandre Duret-Lutz * automake.in (unquote_m4_arg): New function. diff --git a/automake.in b/automake.in index b0848411..51187fae 100755 --- a/automake.in +++ b/automake.in @@ -4396,7 +4396,7 @@ sub scan_one_autoconf_file if (/$AC_CONFIG_AUX_DIR_PATTERN/o) { - @config_aux_path = $1; + @config_aux_path = &unquote_m4_arg ($1); } # Check for ansi2knr. -- 2.43.5