diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-30 23:00:20 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-10-30 23:02:20 +0100 |
| commit | ac5ac5f8ada90e3b41b998bd715497be4109b3ab (patch) | |
| tree | 01f1ae6420f375e913cc0cab3db0c91ba8ae79b0 | |
| parent | 81272be3cefa0c14de753542e3334841f09bc4a0 (diff) | |
Simplify _INIT_SRCTREE_NOTE definition
| -rw-r--r-- | kconfiglib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index dc2c96d..ccd1869 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -6343,11 +6343,11 @@ _REL_TO_STR = { GREATER_EQUAL: ">=", } -_INIT_SRCTREE_NOTE = """ +_INIT_SRCTREE_NOTE = """\ NOTE: Starting with Kconfiglib 10.0.0, the Kconfig filename passed to Kconfig.__init__() is looked up relative to $srctree (which is set to '{}') instead of relative to the working directory. Previously, $srctree only applied to files being source'd within Kconfig files. This change makes running scripts out-of-tree work seamlessly, with no special coding required. Sorry for the backwards compatibility break! -"""[1:] +""" |
