-
Notifications
You must be signed in to change notification settings - Fork 0
Convert perl to package problems #1419
Comments
|
Some modules seem to be gone too. To me it looks like the missing Error.pm causes the initial trouble in elager.
|
Yeah, we need to add elager to the list of things to check. But the dependency on Error.pm is from twiki, maybe if twiki is updated, this will go away. |
This was referenced Apr 26, 2020
twiki is fixed (hopefully) shebangs of scripts changed from |
Elager also fixed (hopefully): Shebang of |
Sign in
to join this conversation on GitHub.
vacation
and twiki failed, which is user visible. So Convert perl to package #1406 had to be undone temporarilyvacation
failed, because omitting parentheses around the list used in aforeach
-Loop when the list consisted of aqw
-expression only, was historically allowed by the parser but deprecated in 5.14 and made illegal in 5.18 forbidding syntax likefor $a qw(a b c) { ... }
which needs to be changed tofor $a (qw(a b c)) { ... }
The text was updated successfully, but these errors were encountered: