Rename "use_libs" env option to "lib_use"

This commit is contained in:
Ivan Kravets
2015-06-28 19:44:35 +03:00
parent 776a2027fb
commit ebdbf79868
5 changed files with 17 additions and 16 deletions

View File

@@ -75,7 +75,8 @@ class EnvironmentProcessor(object):
RENAMED_OPTIONS = {
"LDF_CYCLIC": "LIB_DFCYCLIC",
"IGNORE_LIBS": "LIB_IGNORE"
"IGNORE_LIBS": "LIB_IGNORE",
"USE_LIBS": "LIB_USE"
}
def __init__(self, cmd_ctx, name, options, # pylint: disable=R0913