fixeria has uploaded this change for review.

View Change

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(-)

git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/47/35547/1
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


To view, visit change 35547. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ibfcc17ca2736da82d60db3b0e350b74e788031b0
Gerrit-Change-Number: 35547
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-MessageType: newchange