summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-21 21:20:11 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-22 08:10:09 +0200
commit217bf7be830ae71587dd011767d1aed80221c556 (patch)
treecbc4f5eea6159f2a676b6b710d8ae26489e86c4c
parentFixes for TMS570 BSP (diff)
downloadrtems-217bf7be830ae71587dd011767d1aed80221c556.tar.bz2
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.
-rwxr-xr-xwscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 43eba62cad..fb8ce9292d 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,
]