aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-01-07 11:00:24 -0500
committerJack Lloyd <[email protected]>2017-01-07 11:01:12 -0500
commitc46692e9562e0faa6961532c21998d5cd5c2ee20 (patch)
treeb66a87d5743398f21f441f8d2abd205aa2fcb592
parentd90c21b69cf0457782e5862c7b87d6e72dea1c40 (diff)
Fix invalid var reference when building on OS without shared libs
Fixes GH #821
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index e583ac683..693be98f2 100755
--- a/configure.py
+++ b/configure.py
@@ -2258,7 +2258,7 @@ def main(argv = None):
raise Exception("--via-amalgamation was removed. Use --amalgamation instead.")
if options.build_shared_lib and not osinfo.building_shared_supported:
- logging.warning('Shared libs not supported on %s, disabling shared lib support' % (self.infofile))
+ logging.warning('Shared libs not supported on %s, disabling shared lib support' % (osinfo.basename))
options.build_shared_lib = False
loaded_mods = choose_modules_to_use(modules, module_policy, arch, cc, options)