Fix a few errors in comments. Patch by Fujii Masao, plus the one in
[PostgreSQL.git] / src / tools / msvc / install.pl
blob993177ebc8b0303085a462927d887d39a229d603
2 # Script that provides 'make install' functionality for msvc builds
4 # $PostgreSQL$
6 use strict;
7 use warnings;
9 use Install qw(Install);
11 my $target = shift || Usage();
12 Install($target);
14 sub Usage
16 print "Usage: install.pl <targetdir>\n";
17 exit(1);