From 3503e351950d4676ded7643ad887a624362b776d Mon Sep 17 00:00:00 2001 From: zhujiaxin Date: Sat, 25 Nov 2023 11:45:59 +0800 Subject: [PATCH] --amend Signed-off-by: zhujiaxin --- BUILD.gn | 2 +- module_sample/BUILD.gn | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 0273c66..88660ce 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -12,5 +12,5 @@ # limitations under the License. group("ko_build") { - deps = [ "//kernel/linux/common_modules/module_sample:ko_sample" ] + deps = [ "module_sample:ko_sample" ] } diff --git a/module_sample/BUILD.gn b/module_sample/BUILD.gn index e661cd3..9e5715f 100644 --- a/module_sample/BUILD.gn +++ b/module_sample/BUILD.gn @@ -15,8 +15,8 @@ import("//build/templates/kernel/ohos_kernel_build.gni") ohos_build_ko("ko_sample") { sources = [ - "//kernel/linux/common_modules/module_sample/ko_sample.c", - "//kernel/linux/common_modules/module_sample/sample_fun.c", + "ko_sample.c", + "sample_fun.c", ] target_ko_name = "kosample" device_name = device_name