summaryrefslogtreecommitdiff
path: root/src/libcamera/gen-controls.py
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-01-11 22:01:41 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2020-01-14 15:33:43 +0200
commit055335bf49dbcb8c149bdcd4e96004c68e6b6ece (patch)
treef5ecee7355ce8b060359c6e6230a6d13ee92dfa6 /src/libcamera/gen-controls.py
parent744fabcbb938d60cdbc0dfadc625bbd6798c2485 (diff)
libcamera: gen-controls.py: Don't hardcode path to python interpreter
The gen-controls.py script hardcodes the path to the python interpreter to /usr/bin/python3 in the first line of the script. This hardcodes usage of the host python3, even when building in cross-compilation environments that may ship their own version of python. Fix it by setting the interpreter to '/usr/bin/env python3'. Reported-by: Madhavan Krishnan <madhavan.krishnan@linaro.org> Suggested-by: Nicolas Dufresne <nicolas@ndufresne.ca> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/libcamera/gen-controls.py')
-rwxr-xr-xsrc/libcamera/gen-controls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/gen-controls.py b/src/libcamera/gen-controls.py
index 940386cc..2e5ac5c8 100755
--- a/src/libcamera/gen-controls.py
+++ b/src/libcamera/gen-controls.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2019, Google Inc.
#