summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-03-01 21:34:45 +0700
committerhathach <[email protected]>2021-03-01 21:34:45 +0700
commit908a3d128fd04d9b7c198560ee8bc64401012244 (patch)
tree29d2675fe8765a033bb813c082af87d233b43b74
parent26d9897551d3b9c01041d75a83e1f1027467c2a2 (diff)
fix ci build for rp2040
-rw-r--r--tools/build_family.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/build_family.py b/tools/build_family.py
index 23a08c663..65d0e8fc2 100644
--- a/tools/build_family.py
+++ b/tools/build_family.py
@@ -98,12 +98,12 @@ def build_size(example, board):
def skip_example(example, board):
ex_dir = 'examples/' + example
+ # family CMake
+ board_mk = 'hw/bsp/{}/family.cmake'.format(family)
+
# family.mk
- board_mk = 'hw/bsp/{}/family.mk'.format(family)
-
- # family.cmake
if not os.path.exists(board_mk):
- board_mk = 'hw/bsp/{}/family.cmake'.format(family)
+ board_mk = 'hw/bsp/{}/family.mk'.format(family)
with open(board_mk) as mk:
mk_contents = mk.read()