diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-02-20 17:35:56 +0100 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-02-20 17:35:56 +0100 |
| commit | 99a7af769352b50881686c10dd1462bd7e273239 (patch) | |
| tree | 4da5522c582a8605babd2a16498b703e9003dc7e | |
| parent | 6469c0544035026d63866e280b6726006170a25e (diff) | |
Document that kconfig_filenames keeps absolute paths as-is
Came up in https://github.com/ulfalizer/Kconfiglib/issues/67.
| -rw-r--r-- | kconfiglib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index f1d514e..771f8a1 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -609,7 +609,8 @@ class Kconfig(object): kconfig_filenames: A list with the filenames of all Kconfig files included in the configuration, relative to $srctree (or relative to the current directory - if $srctree isn't set). + if $srctree isn't set), except absolute paths (e.g. + 'source "/foo/Kconfig") are kept as-is. The files are listed in the order they are source'd, starting with the top-level Kconfig file. If a file is source'd multiple times, it will |
