]> granicus.if.org Git - apache/commitdiff
strip parens from config_vars.mk values
authorDoug MacEachern <dougm@apache.org>
Thu, 6 Sep 2001 15:31:09 +0000 (15:31 +0000)
committerDoug MacEachern <dougm@apache.org>
Thu, 6 Sep 2001 15:31:09 +0000 (15:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90924 13f79535-47bb-0310-9956-ffa450edef68

support/apxs.in

index 9e306bf01d05e469c6e3acb3a5787e53c4e41564..5632271e4a3f537e286f71c6e521ee95358f747c 100644 (file)
@@ -261,6 +261,7 @@ sub get_vars {
             my $val = exists $config_vars{$arg}
                 ? $config_vars{$arg}
                 : $config_vars{lc $arg};
+            $val =~ s/[()]//g;
             $result .= eval qq("$val");
             $result .= ";;";
             $ok = 1;