From 2ab6c1ca2fed4cd732c2c6a0987e9b8a6de59f8f Mon Sep 17 00:00:00 2001 From: handyohos Date: Fri, 18 Feb 2022 20:41:11 +0800 Subject: [PATCH] bugfix: change sqlite part_name to common. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1)修改sqlite的part_name为common,确保最小系统上的也可以编译该模块。 Signed-off-by: handyohos Change-Id: Ic8c62ddd1212e4a0aeb1de6f6c05f22c8ebb9b1b --- BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index f68d9cf..30d7035 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -82,7 +82,7 @@ ohos_shared_library("sqlite") { ] public_configs = [ ":sqlite_config" ] configs = [ ":sqlite3_private_config" ] - part_name = "distributeddatamgr" + part_name = "common" } ohos_executable("sqlite3") { -- Gitee