From: Marek Szuba Date: Mon, 30 Mar 2020 22:10:50 +0000 (+0100) Subject: sys-apps/flashrom: live ebuild: do not restrict USE=tools to PC arches X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0d328738606647024c5858d696edb181c74f8b39;p=gentoo.git sys-apps/flashrom: live ebuild: do not restrict USE=tools to PC arches Although the input of ich_descriptors_tool is very much Intel-specific, as far as I can tell from looking at the code the tool should work without problems on other arches as well. Signed-off-by: Marek Szuba --- diff --git a/sys-apps/flashrom/flashrom-9999.ebuild b/sys-apps/flashrom/flashrom-9999.ebuild index 465d5969df38..179cecf09ef6 100644 --- a/sys-apps/flashrom/flashrom-9999.ebuild +++ b/sys-apps/flashrom/flashrom-9999.ebuild @@ -156,11 +156,7 @@ src_install() { dolib.a libflashrom.a doheader libflashrom.h - if use tools ; then - if use amd64 ; then - dosbin util/ich_descriptors_tool/ich_descriptors_tool - elif use x86 ; then - dosbin util/ich_descriptors_tool/ich_descriptors_tool - fi + if use tools; then + dosbin util/ich_descriptors_tool/ich_descriptors_tool fi }