Kaydet (Commit) bb76465c authored tarafından Yuri Dario's avatar Yuri Dario

i118923 - OS/2 port: improve r1299242/r1299759, quotes must be removed also in…

i118923 - OS/2 port: improve r1299242/r1299759, quotes must be removed also in perl parameter, forgot to test a clean build before, last commit regarding this issue, promised :-).
üst 4a69de9c
......@@ -110,6 +110,11 @@ sub perled_slashes {
my $path = shift;
$path =~ s/\\/\//g;
$path =~ s/\/+/\//g;
if ( $^O eq 'os2' )
{
# remove also quotes surrounding name, thus writing buggy paths
$path =~ s/\"//g;
}
return $path;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment