From f7941d98091827b8d0b6fdabb731e38c99f44b13 Mon Sep 17 00:00:00 2001 From: Petr Hosek Date: Wed, 9 Sep 2020 22:03:13 -0700 Subject: [PATCH] [lit] Use correct variable name for libxml2 This addresses an issue introduced in c4d7536136b3. --- lld/test/lit.cfg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/test/lit.cfg.py b/lld/test/lit.cfg.py index 037b9ed..090a7c2 100644 --- a/lld/test/lit.cfg.py +++ b/lld/test/lit.cfg.py @@ -88,7 +88,7 @@ config.environment['LLD_IN_TEST'] = '1' # cvtres, which always accompanies it. Alternatively, check if we can use # libxml2 to merge manifests. if (lit.util.which('cvtres', config.environment['PATH']) or - config.llvm_libxml2_enabled): + config.have_libxml2): config.available_features.add('manifest_tool') if config.have_libxml2: -- 2.7.4