summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-03 18:30:37 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-05 12:18:22 +0100
commitcf7f4a039f32ce1c82b73b3785afe5d845ad443b (patch)
tree6e1210e55d58c091bc0ab9aac8245063c1814a73 /mk
parentcd7604c4d526ebaaace1002601ec0678364048ab (diff)
mk: Allow use of x_ on prefix functions
Use this for the sha512sum command, on the main mk script at the function check_project_hashes(). Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'mk')
-rwxr-xr-xmk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk b/mk
index 2020115b..28a4cb0c 100755
--- a/mk
+++ b/mk
@@ -277,7 +277,7 @@ check_project_hashes()
[ ! -f "$XBMK_CACHE/hash/$project$tree" ] || \
read -r old_pjhash < "$XBMK_CACHE/hash/$project$tree"
- fx_ sha512sum "$datadir" "$configdir/$tree" "$mdir" \
+ fx_ "x_ sha512sum" "$datadir" "$configdir/$tree" "$mdir" \
-type f -not -path "*/.git*/*" | awk '{print $1}' > \
"$xbmktmp/project.hash" || $err "!h $project $tree"