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 dc3beaf commit dc6f98eCopy full SHA for dc6f98e
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!"
@@ -426,6 +429,7 @@ sub GenerateFiles
426
429
{
427
430
print "Generating sql_help.h...\n";
428
431
chdir('src/bin/psql');
432
+ $ENV{"PRODUCT_NAME"} = $self->{productname};
433
system("perl create_help.pl ../../../doc/src/sgml/ref sql_help");
434
chdir('../../..');
435
0 commit comments