Fix oops in last commit

This commit is contained in:
Andrew Johnson
2016-04-25 12:24:05 -05:00
parent de38b80795
commit af07e0fd51

View File

@@ -6,7 +6,8 @@
use strict;
use Config;
my $val = $Config{shift};
my $arg = shift;
my $val = $Config{$arg};
$val =~ s{\\}{/}go
if $^O eq 'MSWin32';