diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-06 14:56:33 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-06 14:56:33 +0100 |
commit | 0a93c8238847fc3f595d7431c8a2e12f0603a6ef (patch) | |
tree | 2b789fc74085721c7527a69c86b7bd0e5eb69676 /mk | |
parent | 7d73e45f5b8656371e286cdca006f9731d1b58ca (diff) | |
parent | e8be3fd1d41c3c0a81c2cfecb3fa68271ad794ca (diff) |
Merge branch 'master' into 25.04_branch25.04_branch
Diffstat (limited to 'mk')
-rwxr-xr-x | mk | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -370,10 +370,8 @@ check_defconfig() elfcheck() { - # TODO: very hacky check. do it properly (based on build.list) - for elftest in "$dest_dir"/*; do - [ -e "$elftest" ] && e "$elftest" f && return 1 - done; : + # TODO: *STILL* very hacky check. do it properly (based on build.list) + ( fx_ "exit 1" "$dest_dir" -type f ) || return 1; : } handle_makefile() |