Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Commit fcbc380

Browse files
rainerjungpull[bot]
authored andcommitted
Regexp modifier "r" needs perl 5.14; OpenSSL should build with 5.11, so do not use the "r" shortcut.
Reviewed-by: Hugo Landau <[email protected]> Reviewed-by: Richard Levitte <[email protected]> Reviewed-by: Paul Dale <[email protected]> (Merged from openssl#22019)
1 parent a71f605 commit fcbc380

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Configurations/50-win-hybridcrt.conf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
sub remove_from_flags {
1212
my ($toRemove, $flags) = @_;
1313

14-
return $flags =~ s/$toRemove//r;
14+
$flags =~ s/$toRemove//;
15+
return $flags;
1516
}
1617

1718
my %targets = (

0 commit comments

Comments
 (0)