diff options
author | Leah Rowe <leah@libreboot.org> | 2025-04-12 02:28:14 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-04-12 02:28:14 +0100 |
commit | c189257888af33a435ca483838ae44069585d227 (patch) | |
tree | 5b1ddbcb40d34510ac34e270f07db337e05639a1 /script | |
parent | 115a66fddd3422c84e3911252dfb0c89febb9514 (diff) |
trees: don't build dependencies if dry=":"
build_depend is already blanked anyway, but it can't
hurt to have an extra check here.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/trees | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/trees b/script/trees index 9776d6c0..07991199 100755 --- a/script/trees +++ b/script/trees @@ -160,7 +160,7 @@ configure_project() done [ "$XBMK_RELEASE" = "y" ] && [ "$release" = "n" ] && return 1 [ -z "$btype" ] || [ "${mode%config}" = "$mode" ] || return 1 - [ -z "$mode" ] && build_dependencies + [ -z "$mode" ] && $dry build_dependencies mdir="$xbmkpwd/config/submodule/$project" [ -n "$tree" ] && mdir="$mdir/$tree" |