Skip to content

Commit 80474df

Browse files
committed
Hint should advise using 'make regen'
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)).
1 parent f91101a commit 80474df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/porting/regen.t

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ foreach (@progs) {
109109
note("./perl $args");
110110
my $command = "$^X $args";
111111
system $command
112-
and die <<~"HINT";
112+
and die <<~'HINT';
113113
Hint: A failure in this file can often be corrected by running:
114-
./perl -Ilib $_
114+
make regen
115115
HINT
116116
}

0 commit comments

Comments
 (0)