You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 'conditioning' part is replacing '/usr/bin/python' in glib-
mkenums file with '/usr/bin/python3', to ensure that it works
with the current builds. Unfortunately, this only works if the
original shebang was referring to python2. The current version
of glib-mkenums, instead, has a shebang that already points to
python3, so the result of the sed command is a shebang that
points to python33, resulting in an execution error.
This patch fixes it by ensuring that the replacement is done
only if the shebang points to "python", but not if it points to
"python3".
Fixubuntu#260
glib-mkenums fails to run because the shebang is
#!/usr/bin/python33
. The reason seems to be this line insnapcraft.yaml
:I'm preparing a patch for it. After I test it, I'll upload it.
The text was updated successfully, but these errors were encountered: