Skip to content

Commit

Permalink
Hint should advise using 'make regen'
Browse files Browse the repository at this point in the history
Per discussion by @demerphq in
#20682 (comment).  The
'regen' programs should be run with your installed 'perl'.

Use single quote in heredoc, as $_ is no longer being interpolated (per
@JRaspass in
#20683 (comment)).
  • Loading branch information
jkeenan committed Jan 11, 2023
1 parent f91101a commit 80474df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/porting/regen.t
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ foreach (@progs) {
note("./perl $args");
my $command = "$^X $args";
system $command
and die <<~"HINT";
and die <<~'HINT';
Hint: A failure in this file can often be corrected by running:
./perl -Ilib $_
make regen
HINT
}

0 comments on commit 80474df

Please sign in to comment.