Follow commit 62822fc7e0f ("target/or1k: Rename from openrisc").
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
---
target/or1k/meson.build | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/target/or1k/meson.build b/target/or1k/meson.build
index cad8c1b1ae0..cc912ee6cf9 100644
--- a/target/or1k/meson.build
+++ b/target/or1k/meson.build
@@ -1,8 +1,8 @@
gen = decodetree.process('insns.decode')
-openrisc_ss = ss.source_set()
-openrisc_ss.add(gen)
-openrisc_ss.add(files(
+or1k_ss = ss.source_set()
+or1k_ss.add(gen)
+or1k_ss.add(files(
'cpu.c',
'disas.c',
'exception.c',
@@ -14,12 +14,12 @@ openrisc_ss.add(files(
'translate.c',
))
-openrisc_system_ss = ss.source_set()
-openrisc_system_ss.add(files(
+or1k_common_system_ss = ss.source_set()
+or1k_common_system_ss.add(files(
'interrupt.c',
'machine.c',
'mmu.c',
))
-target_arch += {'or1k': openrisc_ss}
-target_common_system_arch += {'or1k': openrisc_system_ss}
+target_arch += {'or1k': or1k_ss}
+target_common_system_arch += {'or1k': or1k_common_system_ss}
--
2.52.0