aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2009-09-19 05:56:50 +0000
committerAndrew Dunstan <andrew@dunslane.net>2009-09-19 05:56:50 +0000
commit7ef5ffdeaf466ed4f5a642cc06c6779a40681538 (patch)
tree31a7ff76f919a1515c3c8a8c7103a0f01007ff69
parent726725d4d948d54959a535d9a89df2138d8168d7 (diff)
downloadpostgresql-7ef5ffdeaf466ed4f5a642cc06c6779a40681538.tar.gz
postgresql-7ef5ffdeaf466ed4f5a642cc06c6779a40681538.zip
Fix MSVC build breakage from psql help changes. Per Josh Williams.
-rw-r--r--src/tools/msvc/Solution.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
index 39510303616..3916011a623 100644
--- a/src/tools/msvc/Solution.pm
+++ b/src/tools/msvc/Solution.pm
@@ -3,7 +3,7 @@ package Solution;
#
# Package that encapsulates a Visual C++ solution file generation
#
-# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.47 2009/01/06 18:37:50 mha Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.48 2009/09/19 05:56:50 adunstan Exp $
#
use Carp;
use strict;
@@ -235,7 +235,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
{
print "Generating sql_help.h...\n";
chdir('src\bin\psql');
- system("perl create_help.pl ../../../doc/src/sgml/ref sql_help.h");
+ system("perl create_help.pl ../../../doc/src/sgml/ref sql_help");
chdir('..\..\..');
}