diff options
author | Marek Szuba <marecki@gentoo.org> | 2020-03-30 23:10:50 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2020-03-30 23:40:03 +0100 |
commit | 0d328738606647024c5858d696edb181c74f8b39 (patch) | |
tree | e9ff42ef19f7e368c95ed8277115fb104c371b7e /sys-apps/flashrom | |
parent | sys-apps/flashrom: live ebuild: compile and install libflashrom (diff) | |
download | gentoo-0d328738606647024c5858d696edb181c74f8b39.tar.gz gentoo-0d328738606647024c5858d696edb181c74f8b39.tar.bz2 gentoo-0d328738606647024c5858d696edb181c74f8b39.zip |
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 <marecki@gentoo.org>
Diffstat (limited to 'sys-apps/flashrom')
-rw-r--r-- | sys-apps/flashrom/flashrom-9999.ebuild | 8 |
1 files changed, 2 insertions, 6 deletions
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 } |