Advertisement
Guest User

libreelec libtool fix

a guest
Sep 10th, 2017
864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. Unescaped left brace in regex is illegal here in regex;
  2. marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/
  3. at /home/hdkiller/libre/LibreELEC.tv/build.LibreELEC-RPi2.arm-9.0-devel/toolchain/bin/automake-1.15 line 3936.
  4.  
  5. --- a/bin/automake.in_orig 2015-01-05 20:25:55.000000000 +0100
  6. +++ b/bin/automake.in 2017-09-10 08:56:51.800291204 +0200
  7. @@ -3878,7 +3878,7 @@ sub substitute_ac_subst_variables_worker
  8. sub substitute_ac_subst_variables
  9. {
  10. my ($text) = @_;
  11. - $text =~ s/\${([^ \t=:+{}]+)}/substitute_ac_subst_variables_worker ($1)/ge;
  12. + $text =~ s/\$\{([^ \t=:+{}]+)\}/substitute_ac_subst_variables_worker ($1)/ge;
  13. return $text;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement