diff options
author | Simon Glass | 2020-04-17 18:09:05 -0600 |
---|---|---|
committer | Simon Glass | 2020-04-26 14:25:21 -0600 |
commit | b4fa94959db039c7eca4531a5b9a41baffa8b4c8 (patch) | |
tree | 31c441d8968f3432b7be5149f401f0fc29fc3d34 /tools/dtoc/test_fdt.py | |
parent | bf776679a73f3b9eae37aabd2be5754483039cb2 (diff) |
patman: Tidy up sys.path changes
Now that we are using absolute paths we can remove some of the sys.path
mangling that appears in the tools.
We only need to add the path to 'tools/' so that everything can find
modules relative to that directory.
The special paths for finding pylibfdt remain.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/dtoc/test_fdt.py')
-rwxr-xr-x | tools/dtoc/test_fdt.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/dtoc/test_fdt.py b/tools/dtoc/test_fdt.py index d68230713e4..375e906424c 100755 --- a/tools/dtoc/test_fdt.py +++ b/tools/dtoc/test_fdt.py @@ -14,8 +14,7 @@ import unittest # Bring in the patman libraries our_path = os.path.dirname(os.path.realpath(__file__)) -for dirname in ['../patman', '..']: - sys.path.insert(0, os.path.join(our_path, dirname)) +sys.path.insert(1, os.path.join(our_path, '..')) from dtoc import fdt from dtoc import fdt_util |