From: Tom Tromey Date: Mon, 1 Feb 1999 11:53:49 +0000 (+0000) Subject: * automake.in (finish_languages): Use "&", not "do". From Pavel X-Git-Tag: user-dep-gen-branchpoint~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84964ca79118d87ef9b771cb44d71640d21d641c;p=thirdparty%2Fautomake.git * automake.in (finish_languages): Use "&", not "do". From Pavel Roskin. (handle_single_transform_list): Likewise. --- diff --git a/ChangeLog b/ChangeLog index b61f5eab2..388c964ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-02-01 Tom Tromey + + * automake.in (finish_languages): Use "&", not "do". From Pavel + Roskin. + (handle_single_transform_list): Likewise. + 1999-01-29 Tom Tromey * automake.in (handle_configure): Removed unused variable. From diff --git a/automake.in b/automake.in index ceaf5f6af..26a97e597 100755 --- a/automake.in +++ b/automake.in @@ -929,7 +929,7 @@ sub finish_languages # 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 @@ -1090,7 +1090,7 @@ sub handle_single_transform_list # 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;