Skip to content

Commit

Permalink
changed quote-mark style in args passed to shell for *_install.pl so …
Browse files Browse the repository at this point in the history
…that it works with cmd.exe and nmake.exe
  • Loading branch information
lstein committed Oct 31, 2006
1 parent 3ae54d4 commit 865493d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -322,7 +322,7 @@ sub MY::install {
sub MY::postamble {
my $paths;
for my $key (keys %OPTIONS) {
$paths .= qq('$key=$OPTIONS{$key}' ) if defined $OPTIONS{$key};
$paths .= qq("$key=$OPTIONS{$key}" ) if defined $OPTIONS{$key};
}
qq{
conf_install ::
Expand Down

0 comments on commit 865493d

Please sign in to comment.