summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk')
-rwxr-xr-xmk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk b/mk
index a438d653..61d5d694 100755
--- a/mk
+++ b/mk
@@ -279,7 +279,7 @@ check_project_hashes()
[ ! -f "$XBMK_CACHE/hash/$project$tree" ] || \
read -r old_pjhash < "$XBMK_CACHE/hash/$project$tree"
- fx_ "x_ sha512sum" "$datadir" "$configdir/$tree" "$mdir" \
+ fx_ "x_ sha512sum" find "$datadir" "$configdir/$tree" "$mdir" \
-type f -not -path "*/.git*/*" | awk '{print $1}' > \
"$xbmktmp/project.hash" || err "!h $project $tree"
@@ -371,7 +371,7 @@ check_defconfig()
elfcheck()
{
# TODO: *STILL* very hacky check. do it properly (based on build.list)
- ( fx_ "exit 1" "$dest_dir" -type f ) || return 1; :
+ ( fx_ "exit 1" find "$dest_dir" -type f ) || return 1; :
}
handle_makefile()