fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/35547?usp=email )
Change subject: firmware: fix shebang in solve_envs.py: s/python/python3/ ......................................................................
firmware: fix shebang in solve_envs.py: s/python/python3/
This patch fixes [currently missing] Jenkins build verification. Currently it's just skipping the firmware due to errors:
make -C target/firmware CROSS_COMPILE=arm-none-eabi- make[1]: Entering directory '/build/src/target/firmware' /usr/bin/env: 'python': No such file or directory /usr/bin/env: 'python': No such file or directory /usr/bin/env: 'python': No such file or directory /usr/bin/env: 'python': No such file or directory /usr/bin/env: 'python': No such file or directory /usr/bin/env: 'python': No such file or directory ...
Change-Id: Ibfcc17ca2736da82d60db3b0e350b74e788031b0 --- M src/target/firmware/solve_envs.py 1 file changed, 23 insertions(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, approved laforge: Looks good to me, but someone else must approve
diff --git a/src/target/firmware/solve_envs.py b/src/target/firmware/solve_envs.py index b010897..da1b0e1 100755 --- a/src/target/firmware/solve_envs.py +++ b/src/target/firmware/solve_envs.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3
import sys