]> sourceware.org Git - automake.git/commitdiff
* automake.in (finish_languages): Use "&", not "do". From Pavel
authorTom Tromey <tromey@redhat.com>
Mon, 1 Feb 1999 11:53:48 +0000 (11:53 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 1 Feb 1999 11:53:48 +0000 (11:53 +0000)
Roskin.
(handle_single_transform_list): Likewise.

ChangeLog
automake.in

index b61f5eab29770b5fc71dd9b0f89c4e98580d7d48..388c964acc4c06d9389d251015801725a1bf9552 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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
index ceaf5f6afd8d088b0cd69c75c8f4f252e442aa55..26a97e5978251807ca8ea28c6d8511bec8b85764 100755 (executable)
@@ -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;
 
This page took 0.044509 seconds and 5 git commands to generate.