diff options
author | Andrew Dunstan | 2009-09-19 05:56:50 +0000 |
---|---|---|
committer | Andrew Dunstan | 2009-09-19 05:56:50 +0000 |
commit | cc15d8bf033b478b982119de4304c0d459f3c1ca (patch) | |
tree | b1300a46980e4df274f8647e9f01f7e28414ca10 | |
parent | 04651daedf7c69f550c29c97238b121b255d89a1 (diff) |
Fix MSVC build breakage from psql help changes. Per Josh Williams.
-rw-r--r-- | src/tools/msvc/Solution.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 583a7048a6..d2621cb363 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -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('..\..\..'); } |