diff options
author | James Le Cuirot <chewi@gentoo.org> | 2024-09-10 11:36:56 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2024-09-10 12:30:18 +0100 |
commit | 170a9bba6640fc6eb6753862245e28b17d217f6e (patch) | |
tree | 5b155ac8637065d21ef56411f0cdece57bde0a57 /sys-firmware | |
parent | sys-firmware/seabios: add 1.16.3 (diff) | |
download | gentoo-170a9bba6640fc6eb6753862245e28b17d217f6e.tar.gz gentoo-170a9bba6640fc6eb6753862245e28b17d217f6e.tar.bz2 gentoo-170a9bba6640fc6eb6753862245e28b17d217f6e.zip |
sys-firmware/seabios: Soften the warning about building from source
This was written over 10 years ago, and we do build our own -bin package
with the regular Gentoo toolchain. Upstream does not give any such
warning, at least in https://www.seabios.org/Build_overview.
Signed-off-by: James Le Cuirot <chewi@gentoo.org>
Diffstat (limited to 'sys-firmware')
-rw-r--r-- | sys-firmware/seabios/seabios-1.16.3.ebuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sys-firmware/seabios/seabios-1.16.3.ebuild b/sys-firmware/seabios/seabios-1.16.3.ebuild index eaaa72c37fa1..7fd2fd755950 100644 --- a/sys-firmware/seabios/seabios-1.16.3.ebuild +++ b/sys-firmware/seabios/seabios-1.16.3.ebuild @@ -52,14 +52,10 @@ choose_target_chost() { } pkg_pretend() { - ewarn "You have decided to compile your own SeaBIOS. This is not" - ewarn "supported by upstream unless you use their recommended" - ewarn "toolchain (which you are not)." - elog - ewarn "If you are intending to use this build with QEMU, realize" - ewarn "you will not receive any support if you have compiled your" - ewarn "own SeaBIOS. Virtual machines subtly fail based on changes" - ewarn "in SeaBIOS." + ewarn "You have decided to compile your own SeaBIOS. This may cause subtle" + ewarn "failures at runtime. Please try sys-firmware/seabios-bin before" + ewarn "requesting support from Gentoo or upstream." + if [[ -z "$(choose_target_chost)" ]]; then elog eerror "Before you can compile ${PN}, you need to install a x86 cross-compiler" |