[rtems commit] build: Add "bsps/" prefix to BSP family enable

Sebastian Huber sebh at rtems.org
Thu Jul 22 06:11:14 UTC 2021


Module:    rtems
Branch:    master
Commit:    217bf7be830ae71587dd011767d1aed80221c556
Changeset: http://git.rtems.org/rtems/commit/?id=217bf7be830ae71587dd011767d1aed80221c556

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Wed Jul 21 21:20:11 2021 +0200

build: Add "bsps/" prefix to BSP family enable

BSP family and BSP variant names may be equal.  This prefix avoids
ambiguity in the enabled-by expressions.

---

 wscript | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/wscript b/wscript
index 43eba62..fb8ce92 100755
--- a/wscript
+++ b/wscript
@@ -1390,7 +1390,7 @@ def configure_variant(conf, cp, bsp_map, path_list, top_group, variant):
     conf.env["ENABLE"] = [
         get_compiler(conf, cp, variant),
         arch,
-        arch_family,
+        "bsps/" + arch_family,
         arch_bsp,
     ]
 



More information about the vc mailing list