diff options
author | Leah Rowe <leah@libreboot.org> | 2024-07-10 01:11:14 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-07-10 01:11:14 +0100 |
commit | 469cc64f99d2d9341429cd47d22f9fa77fb1ce72 (patch) | |
tree | 79114f7f01b8c8004d36bdcbd3e723a8d3014bfa /script/trees | |
parent | 5a1d2401c2654e0cb24b36032d4347fdc6ef8a6f (diff) |
trees: fix bad comparison
pro-tip: don't do this at 3AM
do massive changes like this, no later than 1AM.
the intent anyway is for -d to cause no build dependencies
to be handled, but the current logic says to only handle
them if -d is set! fix it by removing the ! part
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/trees')
-rwxr-xr-x | script/trees | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/trees b/script/trees index c6175986..1d8c755f 100755 --- a/script/trees +++ b/script/trees @@ -162,7 +162,7 @@ configure_project() [ "$XBMK_RELEASE" = "y" ] && [ "$release" = "n" ] && return 1 [ -z "$btype" ] || [ "${mode%config}" = "$mode" ] || return 1 - if [ "$_f" != "-d" ]; then + if [ "$_f" = "-d" ]; then : elif [ -z "$mode" ]; then for bd in $build_depend; do |