View | Details | Raw Unified | Return to bug 200464
Collapse All | Expand All

(-)Makefile (-1 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	automake
4
PORTNAME=	automake
5
PORTVERSION=	1.4.6
5
PORTVERSION=	1.4.6
6
PORTREVISION=	7
6
PORTREVISION=	8
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	GNU
8
MASTER_SITES=	GNU
9
PKGNAMESUFFIX=	14
9
PKGNAMESUFFIX=	14
(-)files/patch-automake.in (+20 lines)
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
 

Return to bug 200464