From 9343280a61f0c0736e237168297b9d1490a66255 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Mon, 18 Apr 2016 11:05:38 +1000 Subject: Remove the 4.11 reference and use the version argument. --- rtems.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3