22 lines
633 B
Diff
22 lines
633 B
Diff
|
From: Matthias Klose <doko@ubuntu.com>
|
||
|
Date: Sat, 13 Feb 2016 13:44:56 -0500
|
||
|
Subject: Fix testsuite failure, caused by perl warnings
|
||
|
|
||
|
---
|
||
|
bin/automake.in | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/bin/automake.in b/bin/automake.in
|
||
|
index eedc8bc..a679d16 100644
|
||
|
--- a/bin/automake.in
|
||
|
+++ b/bin/automake.in
|
||
|
@@ -3878,7 +3878,7 @@ sub substitute_ac_subst_variables_worker
|
||
|
sub substitute_ac_subst_variables
|
||
|
{
|
||
|
my ($text) = @_;
|
||
|
- $text =~ s/\${([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
|
||
|
+ $text =~ s/\$\{([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
|
||
|
return $text;
|
||
|
}
|
||
|
|