Skip to content

Commit

Permalink
add missing wait in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Feb 21, 2024
1 parent 163b80a commit c98c5b2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ build_all: \
$(foreach image, $(CRUBY_IMAGES), build_${image}) \
.WAIT \
$(foreach image, $(MISC_IMAGES), build_${image}) \
.WAIT \
$(foreach image, $(PYTHON_IMAGES), build_${image}) \
build_full

Expand Down

1 comment on commit c98c5b2

@ajhodgson
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why this was needed, the waits are really just to ensure that ruby only gets compiled once per version, and that's all done during CRUBY_IMAGES

Please sign in to comment.