diff options
| author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2025-11-07 14:54:49 +0100 |
|---|---|---|
| committer | Jonathan Corbet <corbet@lwn.net> | 2025-11-10 12:45:46 -0700 |
| commit | fc9e9a39cc98de2f6dc5c927bfbcce9db40978d2 (patch) | |
| tree | d2c914edd5cb507fd5d8598504f751aaf721ecec /tools/docs/get_abi.py | |
| parent | d69a03a97a2d9a85d344b5988640d7f5cf6f598b (diff) | |
tools/docs/get_abi.py: fix get_abi library directory
changeset a5dd93016f20 ("docs: move get_abi.py to tools/docs") moved
the script location, but didn't update library location, causing it
to fail.
Fixes: a5dd93016f20 ("docs: move get_abi.py to tools/docs")
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <3839bc4db2d5c7e14dd2686876a2c7b5d72a46cd.1762523688.git.mchehab+huawei@kernel.org>
Diffstat (limited to 'tools/docs/get_abi.py')
| -rwxr-xr-x | tools/docs/get_abi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docs/get_abi.py b/tools/docs/get_abi.py index 7ce4748a46d2..da69e77559cc 100755 --- a/tools/docs/get_abi.py +++ b/tools/docs/get_abi.py @@ -14,7 +14,7 @@ import sys # Import Python modules -LIB_DIR = "lib/abi" +LIB_DIR = "../../scripts/lib/abi" SRC_DIR = os.path.dirname(os.path.realpath(__file__)) sys.path.insert(0, os.path.join(SRC_DIR, LIB_DIR)) |
