Skip to content

Commit

Permalink
backslash fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dk committed Sep 18, 2024
1 parent 88295da commit e7a0fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -2443,7 +2443,7 @@ sub command_postinstall
s/\//\\/g for values %vars;
}

(my $bin = $opt{bin}) =~ s#"#\\"#g; # q() not robust to whacky dirnames
(my $bin = $opt{bin}) =~ s[(["\\])][\\$1]g; # q() not robust to whacky dirnames
print $fh2 <<HEADER;
# This file was automatically generated.
package Prima::Config;
Expand Down

0 comments on commit e7a0fd2

Please sign in to comment.