diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-09-14 10:02:28 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-09-14 10:05:16 +0100 |
| commit | 93b49afa3fa1af3b0bf018a04cb93bf1df7556a2 (patch) | |
| tree | 69a09e7d563ea3b8fc4e00ae006e78d3b4d43e17 /include | |
| parent | 6c3791ce81fc9c3b24608006496d25ca07212b1d (diff) | |
mk: remove gcc/gnat matching logic (obsolete)
coreboot has this now:
commit c421847fe2fef61586eb313206a4be0f2e491974
Author: Matt DeVillier <matt.devillier@gmail.com>
Date: Mon Dec 29 10:12:17 2025 -0600
util/crossgcc: Fix GNAT detection for gnat-15
this one is advisory instead, telling the user to
create such a symlink as we did. this is much less
invasive.
our own check was bad, because it basically silences
what is otherwise an error. coreboot's approach is
more correct, so we will defer to that instead.
note that this means older coreboot (for fam15h) is
no longer covered, but those trees don't use gnat
anyway as libgfxinit is unused on those targets
this lbmk patch removes 61 sloc of dead code, which
makes me very happy.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/env/init.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/env/init.sh b/include/env/init.sh index 523d01de..0003d098 100644 --- a/include/env/init.sh +++ b/include/env/init.sh @@ -171,7 +171,7 @@ xbmk_parent_set_env() xbmk_parent_set_export xbmk_set_version - remkdir "$xbtmp" "$xbtmp/gnupath" "$xbtmp/xbmkpath" + remkdir "$xbtmp" "$xbtmp/xbmkpath" xbmk_set_pyver xbmk_set_mirror @@ -216,7 +216,7 @@ xbmk_parent_set_export() err "cachedir '$XBMK_CACHE' is a file" \ "xbmk_parent_set_export" "$@" - export PATH="$xbtmp/xbmkpath:$xbtmp/gnupath:$PATH" + export PATH="$xbtmp/xbmkpath:$PATH" xbmkpath="$PATH" # if "y": a coreboot target won't be built if target.cfg says release=n |
