diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-09-20 22:09:35 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-09-20 22:09:35 +0100 |
| commit | fd6f52700ff7fbe877cfa17312fccd48e4cfd13e (patch) | |
| tree | fc8332a7e5a19f938e223e4693a1ff603551a36d | |
| parent | 009103c8f6bb3c3d1a77967b8878bc71b00d1a4e (diff) | |
mk: don't skip same-target builds
this introduced too many bugs. i have a better way.
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rwxr-xr-x | mk | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -201,10 +201,6 @@ handle_target() configure_target "$target_dir" && \ $if_not_fetch x_ handle_buildcfg - # if using configs, we never build from the master target - [ "$noconfig" != "y" ] && [ "$tree" = "$target" ] && \ - $if_not_dry_build return 0 - $if_build $if_not_fetch \ x_ $postmake; : } @@ -247,9 +243,6 @@ configure_target() delete_old_project_files [ ! -f "CHANGELOG" ] && x_ fetch_trees; : - - [ "$noconfig" != "y" ] && [ "$tree" = "$target" ] && \ - $if_not_dry_build return 1; : } try_target_config() @@ -297,9 +290,6 @@ mk_dependencies() handle_buildcfg() { - [ "$noconfig" != "y" ] && [ "$tree" = "$target" ] && \ - $if_not_dry_build return 0 - [ ! -d "$srcdir" ] || for y in "$defscan"/* do buildcfg="$y" |
