We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0730546 commit 4eb3bd2Copy full SHA for 4eb3bd2
src/tools/msvc/Solution.pm
@@ -137,6 +137,9 @@ sub GenerateFiles
137
if ( /^PGPRO_VERSION="\$PACKAGE_VERSION\.(\d+)"/) {
138
$self->{pgprover} = $1;
139
}
140
+ if ( /^PRODUCT_NAME="([^"]+)"/ ) {
141
+ $self->{productname} = $1;
142
+ }
143
144
close($c);
145
confess "Unable to parse configure.in for all variables!"
@@ -420,6 +423,7 @@ sub GenerateFiles
420
423
{
421
424
print "Generating sql_help.h...\n";
422
425
chdir('src/bin/psql');
426
+ $ENV{"PRODUCT_NAME"} = $self->{productname};
427
system("perl create_help.pl ../../../doc/src/sgml/ref sql_help");
428
chdir('../../..');
429
0 commit comments