diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-02-27 15:40:17 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2024-02-27 15:53:46 +0200 |
commit | 26d9e36d3e057b91b5b1b161a38f23f19a0590e5 (patch) | |
tree | d09e6a61db77416b68d36702d7e5cd7467a1b234 /utils/rkisp1 | |
parent | 51054cef600c4e13c338b05cebf02fcf02b887d6 (diff) |
utils: rkisp1: gen-csc-table.py: Don't presume python3 location
The python3 binary may be present in a location other than /usr/bin/.
Use /usr/bin/env to locate it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Diffstat (limited to 'utils/rkisp1')
-rwxr-xr-x | utils/rkisp1/gen-csc-table.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/rkisp1/gen-csc-table.py b/utils/rkisp1/gen-csc-table.py index c47f5042..ffc0370a 100755 --- a/utils/rkisp1/gen-csc-table.py +++ b/utils/rkisp1/gen-csc-table.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # SPDX-License-Identifier: GPL-2.0-or-later # Copyright (C) 2022, Ideas on Board Oy # |