From d3cdf151a4e737d407f8a499b45a720de0018675 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 10 Dec 2022 19:11:59 +0100 Subject: [PATCH] Meta: Rename `E2FSCK` => `E2FSCK_PATH` Done to increase consistency with other binaries' path. --- Meta/.shell_include.sh | 2 +- Meta/build-image-qemu.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Meta/.shell_include.sh b/Meta/.shell_include.sh index 0672595a38..21da3119c6 100755 --- a/Meta/.shell_include.sh +++ b/Meta/.shell_include.sh @@ -44,4 +44,4 @@ find_executable() { FUSE2FS_PATH="$(find_executable fuse2fs)" RESIZE2FS_PATH="$(find_executable resize2fs)" -E2FSCK="$(find_executable e2fsck)" +E2FSCK_PATH="$(find_executable e2fsck)" diff --git a/Meta/build-image-qemu.sh b/Meta/build-image-qemu.sh index e021ce3f6a..ea9453e350 100755 --- a/Meta/build-image-qemu.sh +++ b/Meta/build-image-qemu.sh @@ -83,7 +83,7 @@ if [ -f _disk_image ]; then echo "checking existing image" result=0 - "$E2FSCK" -f -y _disk_image || result=$? + "$E2FSCK_PATH" -f -y _disk_image || result=$? if [ $result -ge 4 ]; then rm -f _disk_image USE_EXISTING=0