代码拉取完成,页面将自动刷新
同步操作将从 src-openEuler/distributed-build_lite 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
From f22df6d4d6e194ad0c5d1e899dd6353126f36f58 Mon Sep 17 00:00:00 2001
From: peng_langyuan <[email protected]>
Date: Wed, 17 May 2023 13:31:44 +0800
Subject: [PATCH 1/3] =?UTF-8?q?feat(Adapt=20to=20Openeuler):=E6=9B=BF?=
=?UTF-8?q?=E6=8D=A2python=E8=B7=AF=E5=BE=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
build.py | 11 ++++++++++-
hb/__main__.py | 11 ++++++++++-
2 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/build.py b/build.py
index c8827ec..a94ad4b 100755
--- a/build.py
+++ b/build.py
@@ -25,7 +25,16 @@ import subprocess
def get_python():
hb_main = importlib.import_module("hb.__main__")
topdir = hb_main.find_top()
- python_base_dir = os.path.join(topdir, 'prebuilts/python')
+ index = 0
+ while index < len(sys.argv):
+ if sys.argv[index] == "-p":
+ product_name = sys.argv[index + 1]
+ index += 1
+ if product_name == "openeuler":
+ python_base_dir = "/usr/bin"
+ else:
+ python_base_dir = os.path.join(topdir, 'prebuilts/python')
+ python_base_dir = "/usr/bin"
if os.path.exists(python_base_dir):
python_dir = hb_main.search(python_base_dir, 'python3')
return os.path.join(python_dir, 'python3')
diff --git a/hb/__main__.py b/hb/__main__.py
index 4db4a55..cf9b7e2 100644
--- a/hb/__main__.py
+++ b/hb/__main__.py
@@ -53,7 +53,16 @@ def main():
topdir = find_top()
except Exception as ex:
return print("hb_error: Please call hb utilities inside source root directory")
- python_base_dir = os.path.join(topdir, 'prebuilts/python')
+ index = 0
+ while index < len(sys.argv):
+ if sys.argv[index] == "-p":
+ product_name = sys.argv[index + 1]
+ index += 1
+ if product_name == "openeuler":
+ python_base_dir = "/usr/bin"
+ else:
+ python_base_dir = os.path.join(topdir, 'prebuilts/python')
+ python_base_dir = "/usr/bin"
if os.path.exists(python_base_dir):
python_dir = search(python_base_dir, 'python3')
python_executable = os.path.join(python_dir, 'python3')
--
2.33.0
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。