diff --git a/fsck/BUILD.gn b/fsck/BUILD.gn index ce06e86..e053721 100644 --- a/fsck/BUILD.gn +++ b/fsck/BUILD.gn @@ -5,7 +5,6 @@ # published by the Free Software Foundation. import("//build/ohos.gni") -import("//third_party/e2fsprogs/e2fsprogs.gni") config("f2fs-defaults") { cflags = [ @@ -52,7 +51,7 @@ ohos_executable("fsck.f2fs") { ] deps = [ - "//third_party/e2fsprogs/e2fsprogs/contrib/android:libdacconfig", + "//third_party/e2fsprogs:libdacconfig", "//third_party/f2fs-tools/lib:libf2fs", ] diff --git a/mkfs/BUILD.gn b/mkfs/BUILD.gn index 10aeeda..782db72 100644 --- a/mkfs/BUILD.gn +++ b/mkfs/BUILD.gn @@ -5,7 +5,6 @@ # published by the Free Software Foundation. import("//build/ohos.gni") -import("//third_party/e2fsprogs/e2fsprogs.gni") config("f2fs-defaults") { cflags = [ @@ -35,7 +34,7 @@ ohos_executable("mkfs.f2fs") { ] deps = [ - "//third_party/e2fsprogs/e2fsprogs/lib/uuid:libext2_uuid", + "//third_party/e2fsprogs:libext2_uuid", "//third_party/f2fs-tools/lib:libf2fs", ] diff --git a/tools/BUILD.gn b/tools/BUILD.gn index f10f4f9..3d7971d 100644 --- a/tools/BUILD.gn +++ b/tools/BUILD.gn @@ -5,7 +5,6 @@ # published by the Free Software Foundation. import("//build/ohos.gni") -import("//third_party/e2fsprogs/e2fsprogs.gni") config("f2fs-defaults") { cflags = [ @@ -31,7 +30,7 @@ ohos_executable("f2fscrypt") { ] cflags = [ "-Wno-error=format-extra-args" ] - deps = [ "//third_party/e2fsprogs/e2fsprogs/lib/uuid:libext2_uuid" ] + deps = [ "//third_party/e2fsprogs:libext2_uuid" ] install_enable = true subsystem_name = "thirdparty"