]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
(scan_one_autoconf_file): Unquote AC_LIBOBJ argument.
authorJim Meyering <jim@meyering.net>
Sat, 12 Jan 2002 09:24:24 +0000 (09:24 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 12 Jan 2002 09:24:24 +0000 (09:24 +0000)
automake.in

index b4d514e6d8be46cc38b807caa7fed1319092246d..9ff0773b2ac507cdaed445af5690d7939d03203d 100755 (executable)
@@ -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\(([^)]+)\)/)
        {