From: Jim Meyering Date: Sat, 12 Jan 2002 09:24:24 +0000 (+0000) Subject: (scan_one_autoconf_file): Unquote AC_LIBOBJ argument. X-Git-Tag: Release-1-5d~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d65df4948f27c1da4028dcb39bb4a17b1659ab78;p=thirdparty%2Fautomake.git (scan_one_autoconf_file): Unquote AC_LIBOBJ argument. --- diff --git a/automake.in b/automake.in index b4d514e6d..9ff0773b2 100755 --- a/automake.in +++ b/automake.in @@ -4719,7 +4719,7 @@ sub scan_one_autoconf_file } elsif (/AC_LIBOBJ\(([^)]+)\)/) { - $libsources{"$1.c"} = $here; + $libsources{unquote_m4_arg ($1) . ".c"} = $here; } elsif (/AC_LIBSOURCE\(([^)]+)\)/) {