Commit e1aeba07 authored by Tom Lane's avatar Tom Lane

Fix AddDefine to handle quotes properly. Magnus

parent 2ee56b6a
......@@ -107,6 +107,7 @@ sub AddIncludeDir {
sub AddDefine {
my ($self, $def) = @_;
$def =~ s/"/""/g;
$self->{defines} .= $def . ';';
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment