mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Fix AddDefine to handle quotes properly. Magnus
This commit is contained in:
@ -107,6 +107,7 @@ sub AddIncludeDir {
|
||||
sub AddDefine {
|
||||
my ($self, $def) = @_;
|
||||
|
||||
$def =~ s/"/""/g;
|
||||
$self->{defines} .= $def . ';';
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user