+Thu May 1 12:53:46 1997 Ian Lance Taylor <ian@cygnus.com>
+
+ * automake.in (value_to_list): Don't fail when a variable
+ substitution is not a complete word.
+
Tue May 6 15:22:41 1997 Ian Lance Taylor <ian@cygnus.com>
* subdirs.am: Fix check for make -k to use $(MAKEFLAGS) and to not
* in --cygnus, clean-info not generated at top level
+* what if an element of a scanned variable looks like
+ $(FOO).$(BAR) ?
+ or some other arbitrary thing?
+ right now we try to cope, but not very well
+
* update text in missing
avoid passive voice
last if /^#/;
# Handle variable substitutions.
- if (/^\$\{(.*)\}$/ || /^\$\((.*)\)$/)
+ if (/^\$\{([^}]*)\}$/ || /^\$\(([^)]*)\)$/)
{
local ($varname) = $1;
local ($from, $to);