From a4e3299e7d0e7843840abbc10693bc5f731ec377 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Thu, 18 Jan 2018 14:21:17 -0500 Subject: [PATCH] Add a comment explaining part of the build script --- wscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wscript b/wscript index dda15864..83ed2022 100644 --- a/wscript +++ b/wscript @@ -304,6 +304,9 @@ def build(bld): lib.append('ncurses') if bld.env['use_system_clang']: + # If the user passed `--llvm-config=` (setting `llvm-config` to + # the empty string) to the configure phase, we should not try to + # run it. if bld.env['llvm_config']: rpath = str(subprocess.check_output( [bld.env['llvm_config'], '--libdir'],