+1999-02-01 Tom Tromey <tromey@cygnus.com>
+
+ * automake.in (finish_languages): Use "&", not "do". From Pavel
+ Roskin.
+ (handle_single_transform_list): Likewise.
+
1999-01-29 Tom Tromey <tromey@cygnus.com>
* automake.in (handle_configure): Removed unused variable. From
# Compute the function name of the finisher and then call it.
$name = 'lang_' . $lang . '_finish';
- do $name ();
+ & $name ();
}
# If the project is entirely C++ or entirely Fortran 77, don't
# Found the language, so see what it says.
local ($subr) = 'lang_' . $lang . '_rewrite';
# Note: computed subr call.
- local ($r) = do $subr ($base, $extension);
+ local ($r) = & $subr ($base, $extension);
# Skip this entry if we were asked not to process it.
next if ! $r;