Skip to content

Commit

Permalink
makefiles: Work around toolchain checks not needed for extracting dep…
Browse files Browse the repository at this point in the history
…endency information
  • Loading branch information
chrysn committed Feb 26, 2024
1 parent 1c036ee commit af9f0bc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@ doc:
features.yaml \
--output-md doc/doxygen/src/feature_list.md \
--output-ttl doc/rdf/features.ttl
@./dist/tools/python_with_requirements/python_with_requirements \
@# The BUILD_IN_DOCKER is a workaround for the RISC-V
@# architecture tests otherwise triggering when building eg. in murdock
@# ("No RISC-V toolchain detected. Make sure a RISC-V toolchain is
@# installed."). If I had a penny for every time I refused to let
@# BUILD_IN_DOCKER be the simple workaround, I wouldn't get a penny
@# today (but I'd still be proud of my small collection so far).
BUILD_IN_DOCKER=1 \
./dist/tools/python_with_requirements/python_with_requirements \
./dist/tools/rdf/info_to_rdf.py \
doc/rdf/info.ttl
@./dist/tools/python_with_requirements/python_with_requirements \
Expand Down

0 comments on commit af9f0bc

Please sign in to comment.