mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
Avoid use of mixed slash style paths in arguments to xcopy in MSVC builds.
Some versions of xcopy, notably on Windows 7 don't like it. Backpatch to 8.3, where we first used xcopy.
This commit is contained in:
parent
56c7140ca8
commit
a53112338c
@ -479,15 +479,17 @@ sub CopyIncludeFiles
|
||||
my $D;
|
||||
opendir($D, 'src/include') || croak "Could not opendir on src/include!\n";
|
||||
|
||||
# some xcopy progs don't like mixed slash style paths
|
||||
(my $ctarget = $target) =~ s!/!\\!g;
|
||||
while (my $d = readdir($D))
|
||||
{
|
||||
next if ($d =~ /^\./);
|
||||
next if ($d eq '.git');
|
||||
next if ($d eq 'CVS');
|
||||
next unless (-d 'src/include/' . $d);
|
||||
next unless (-d "src/include/$d");
|
||||
|
||||
EnsureDirectories($target . '/include/server', $d);
|
||||
system("xcopy /s /i /q /r /y src\\include\\$d\\*.h \"$target\\include\\server\\$d\\\"")
|
||||
EnsureDirectories("$target/include/server/$d");
|
||||
system(qq{xcopy /s /i /q /r /y src\\include\\$d\\*.h "$ctarget\\include\\server\\$d\\"})
|
||||
&& croak("Failed to copy include directory $d\n");
|
||||
}
|
||||
closedir($D);
|
||||
|
Loading…
Reference in New Issue
Block a user