Commit 2ede0eca authored by Magnus Hagander's avatar Magnus Hagander

Log directory we're installing into.

Per request from Andrew Dunstan.
parent c59cb9d3
...@@ -3,7 +3,7 @@ package Install; ...@@ -3,7 +3,7 @@ package Install;
# #
# Package that provides 'make install' functionality for msvc builds # Package that provides 'make install' functionality for msvc builds
# #
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.14 2007/04/25 19:00:05 mha Exp $ # $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.15 2007/05/13 15:33:07 mha Exp $
# #
use strict; use strict;
use warnings; use warnings;
...@@ -35,7 +35,7 @@ sub Install ...@@ -35,7 +35,7 @@ sub Install
$conf = "release"; $conf = "release";
} }
die "Could not find debug or release binaries" if ($conf eq ""); die "Could not find debug or release binaries" if ($conf eq "");
print "Installing for $conf\n"; print "Installing for $conf in $target\n";
EnsureDirectories($target, 'bin','lib','share','share/timezonesets','share/contrib','doc', EnsureDirectories($target, 'bin','lib','share','share/timezonesets','share/contrib','doc',
'doc/contrib', 'symbols'); 'doc/contrib', 'symbols');
......
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