]> code.ossystems Code Review - openembedded-core.git/commit
python3: Fix python interpreter line length for nativesdk
authorMingli Yu <mingli.yu@windriver.com>
Mon, 22 Feb 2021 01:21:31 +0000 (09:21 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 23 Feb 2021 22:31:26 +0000 (22:31 +0000)
commita748e6098fa7d2ff594319937c7e0cf97700e83a
tree93dd707207e9c4a6e222270f14487e5cdc128644
parent6d688cc8672b1830ba10966492ab3f8a12d32e17
python3: Fix python interpreter line length for nativesdk

Make sure the python interpreter is "#!/usr/bin/env python3" for
nativesdk to avoid the shebang path exceeding the limit when install
the sdk under the directory with long path.

Before:
 $ cd ${target_sdk_dir}
 $ vi ./sysroots/x86_64-oesdk-linux/usr/bin/2to3
 #!${target_sdk_dir}/sysroots/${SDK_SYS}/usr/bin/python3.9
 [snip]

After:
 $ cd ${target_sdk_dir}
 $ vi ./sysroots/x86_64-oesdk-linux/usr/bin/2to3
 #!/usr/bin/env python3
 [snip]

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/python/python3_3.9.2.bb