Package: openmsx
Version: 17.0-2
Followup-For: Bug #1010148
Control: tags -1 patch
Dear Maintainer,
sorry, I don't know why can attach patch if `repotbug --mutt`?
send patch again.
Last-Update: 2022-04-25
--- openmsx-17.0.orig/build/detectsys.py
+++ openmsx-17.0/build/detectsys.py
@@ -53,6 +53,8 @@ def detectCPU():
return 'sheb' if cpu.endswith('eb') else 'sh'
elif cpu == 'avr32':
return 'avr32'
+ elif cpu == 'riscv64':
+ return 'riscv64'
elif cpu == '':
# Python couldn't figure it out.
os = system().lower()