From a1ce4025be60560481fbd5bd7c295eafb8db0729 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 27 Mar 2020 12:03:31 +0200 Subject: Fix bug in previous commit --- libbuild2/parser.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libbuild2/parser.cxx b/libbuild2/parser.cxx index a4fb17b..68e7ed9 100644 --- a/libbuild2/parser.cxx +++ b/libbuild2/parser.cxx @@ -1769,8 +1769,8 @@ namespace build2 bool new_val (false); lookup l; - if (report && - report != "false" && + if (report && + *report != "false" && name.compare (0, 7, "config.") != 0) { if (!as.empty ()) -- cgit v1.1