]> sourceware.org Git - automake.git/commitdiff
2001-02-16 Alexandre Duret-Lutz <duret_g@epita.fr>
authorTom Tromey <tromey@redhat.com>
Sat, 17 Feb 2001 02:35:53 +0000 (02:35 +0000)
committerTom Tromey <tromey@redhat.com>
Sat, 17 Feb 2001 02:35:53 +0000 (02:35 +0000)
* automake.in (scan_one_configure_file): Unquote AC_CONFIG_AUX_DIR's
argument.

ChangeLog
automake.in

index e27863c0fcae55cc2b1419ffe58bbbeba40befad..6be6a38f0c25e045c7c92012abe7199d04a7fb56 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-02-16  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * automake.in (scan_one_configure_file): Unquote AC_CONFIG_AUX_DIR's
+       argument.
+
 2001-02-16  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * automake.in (unquote_m4_arg): New function.
index b0848411e30cdeacf421a7c3c53626653e66cc8b..51187fae88e39d4be1d50853698ee53e0c145a28 100755 (executable)
@@ -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.
This page took 0.058168 seconds and 5 git commands to generate.