From 6520873e35eff1252061a912b75a47a1ea38b396 Mon Sep 17 00:00:00 2001 From: xwx1135370 Date: Mon, 20 Jan 2025 18:30:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A6=81=E6=AD=A2=E4=BD=BF=E7=94=A8all=5Fdepen?= =?UTF-8?q?dent=5Fconfigs=E9=97=A8=E7=A6=81=E5=91=8A=E8=AD=A6=E6=95=B4?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit issue:https://gitee.com/openharmony/third_party_musl/issues/IBI4YE?from=project-issue&search_text=%E5%91%8A%E8%AD%A6 Signed-off-by: xwx1135370 --- BUILD.gn | 4 ++-- scripts/build_lite/BUILD.gn | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index db5a4e070..1a5c20f63 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -9,12 +9,12 @@ if (is_lite_system && current_os == "ohos") { deps = [ "scripts/build_lite:build" ] } else if (!ohos_kernel_is_prebuilt) { if (ohos_kernel_type == "liteos_m") { - all_dependent_configs = [ + public_configs = [ "${ohos_kernel_path}:public", "${ohos_kernel_path}:kconfig_config", ] } else if (ohos_kernel_type == "uniproton") { - all_dependent_configs = [ + public_configs = [ "//kernel/uniproton:os_config", "//kernel/uniproton:kconfig_config", ] diff --git a/scripts/build_lite/BUILD.gn b/scripts/build_lite/BUILD.gn index e28556bb4..aaf04346b 100644 --- a/scripts/build_lite/BUILD.gn +++ b/scripts/build_lite/BUILD.gn @@ -159,7 +159,7 @@ config("sysroot_flags") { } group("build") { - all_dependent_configs = [ ":sysroot_flags" ] + public_configs = [ ":sysroot_flags" ] deps = [ ":build_sysroot" ] if (!is_llvm_build) { deps += [ ":strip" ] -- Gitee