summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/shared_bindings_matrix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/shared_bindings_matrix.py b/docs/shared_bindings_matrix.py
index 7768296a1..0c838fedb 100644
--- a/docs/shared_bindings_matrix.py
+++ b/docs/shared_bindings_matrix.py
@@ -90,7 +90,7 @@ def get_settings_from_makefile(port_dir, board_name):
in this script, something that has proved error-prone
"""
- status, contents = subprocess.getstatusoutput(f"make -C {port_dir} BOARD={board_name} -qp")
+ status, contents = subprocess.getstatusoutput(f"make -C {port_dir} BOARD={board_name} -qp print-CC")
# Make signals errors with exit status 2; 0 and 1 are "non-error" statuses
if status not in (0, 1):
raise RuntimeError(f'Invoking make exited with {status}')