Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb7d3a84

Browse files
committed
xcopy can only deal with forward-slashed paths when it's quoted - needed
for "vcregress check" to work.Per report from Dave Page.
1 parent9477f12 commitb7d3a84

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎src/tools/msvc/Install.pm

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Install;
33
#
44
# Package that provides 'make install' functionality for msvc builds
55
#
6-
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.6 2007/03/29 20:48:26 mha Exp $
6+
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.7 2007/04/02 12:11:26 mha Exp $
77
#
88
use strict;
99
use warnings;
@@ -67,6 +67,8 @@ sub Install
6767
CopyIncludeFiles($target);
6868

6969
GenerateNLSFiles($target,$config->{nls})if ($config->{nls});
70+
71+
print"Installation complete.\n";
7072
}
7173

7274
subEnsureDirectories
@@ -336,7 +338,7 @@ sub CopyIncludeFiles
336338

337339
EnsureDirectories($target .'/include/postgresql/server',$d);
338340
system(
339-
"xcopy /s /i /q /r /y src\\include\\$d\\*.h$target\\include\\postgresql\\server\\$d\\")
341+
"xcopy /s /i /q /r /y src\\include\\$d\\*.h\"$target\\include\\postgresql\\server\\$d\\\"")
340342
&& croak("Failed to copy include directory$d\n");
341343
}
342344
closedir($D);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp