We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9477f12 commitb7d3a84Copy full SHA for b7d3a84
src/tools/msvc/Install.pm
@@ -3,7 +3,7 @@ package Install;
3
#
4
# Package that provides 'make install' functionality for msvc builds
5
6
-# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.6 2007/03/29 20:48:26 mha Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.7 2007/04/02 12:11:26 mha Exp $
7
8
use strict;
9
use warnings;
@@ -67,6 +67,8 @@ sub Install
67
CopyIncludeFiles($target);
68
69
GenerateNLSFiles($target,$config->{nls})if ($config->{nls});
70
+
71
+print"Installation complete.\n";
72
}
73
74
subEnsureDirectories
@@ -336,7 +338,7 @@ sub CopyIncludeFiles
336
338
337
339
EnsureDirectories($target .'/include/postgresql/server',$d);
340
system(
-"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\\\"")
342
&& croak("Failed to copy include directory$d\n");
343
344
closedir($D);