From e7adc3b8ba4a729745406550240420b55687a7e3 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Tue, 3 Feb 2009 21:20:09 +0000 Subject: [PATCH] Fixed typo --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index e95a08e75..1c606566f 100644 --- a/SConstruct +++ b/SConstruct @@ -36,9 +36,9 @@ def color_print(color,text,newline=True): def uniq_add(env, key, val): if not val in env[key]: env[key].append(val) -# Helper function for removing paths from a lib, if it is an optional plugin +# Helper function for removing paths for a plugin lib def remove_plugin_path(plugin): - plugin = PLUGINS.get(libinfo[0]) + plugin = PLUGINS.get(plugin) if plugin: libpath = '%s_LIBS' % plugin['path'] incpath = '%s_INCLUDES' % plugin['path']