|
Line 0
Link Here
|
|
|
1 |
--- automake.in.orig 2002-07-27 20:55:58 UTC |
| 2 |
+++ automake.in |
| 3 |
@@ -983,7 +983,7 @@ sub finish_languages |
| 4 |
|
| 5 |
# Compute the function name of the finisher and then call it. |
| 6 |
$name = 'lang_' . $lang . '_finish'; |
| 7 |
- do $name (); |
| 8 |
+ &$name (); |
| 9 |
} |
| 10 |
|
| 11 |
# If the project is entirely C++ or entirely Fortran 77, don't |
| 12 |
@@ -1144,7 +1144,7 @@ sub handle_single_transform_list |
| 13 |
# Found the language, so see what it says. |
| 14 |
local ($subr) = 'lang_' . $lang . '_rewrite'; |
| 15 |
# Note: computed subr call. |
| 16 |
- local ($r) = do $subr ($base, $extension); |
| 17 |
+ local ($r) = &$subr ($base, $extension); |
| 18 |
# Skip this entry if we were asked not to process it. |
| 19 |
next if ! $r; |
| 20 |
|