mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 14:02:52 +02:00
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>
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user