forked from pool/automake
73694ca7e3
Also fix automake with perl 5.22 OBS-URL: https://build.opensuse.org/request/show/328329 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/automake?expand=0&rev=50
14 lines
480 B
Diff
14 lines
480 B
Diff
Index: automake-1.15/bin/automake.in
|
|
===================================================================
|
|
--- automake-1.15.orig/bin/automake.in
|
|
+++ automake-1.15/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;
|
|
}
|
|
|