summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rtems.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtems.py b/rtems.py
index 1926e31..d0ffa81 100644
--- a/rtems.py
+++ b/rtems.py
@@ -595,7 +595,7 @@ def _find_installed_archs(config, path, version):
a = subprocess.check_output([config, '--list-format', '"%(arch)s"'])
a = a[:-1].replace('"', '')
archs = set(a.split())
- archs = ['%s-rtems4.11' % (x) for x in archs]
+ archs = ['%s-rtems%s' % (x, version) for x in archs]
archs.sort()
return archs