Skip to content

Commit

Permalink
Merge pull request #1644 from maelvls/fix-make-check
Browse files Browse the repository at this point in the history
`make check` now works; node and npm couldn't be downloaded due to a change to the `ADDITIONAL_TOOLS` API
  • Loading branch information
maelvls authored Feb 14, 2025
2 parents fde74e4 + d3baff8 commit 9a40402
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions make/02_mod.mk
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ $(bin_dir)/scratch/node@$(NODE_VERSION)_%: | $(bin_dir)/scratch
tar xzf $@.tar.gz --strip-components=1 -C $@
rm -f $@.tar.gz

$(bin_dir)/downloaded/tools/node@$(NODE_VERSION)_%: | $(bin_dir)/scratch/node@$(NODE_VERSION)_% $(bin_dir)/downloaded/tools
$(DOWNLOAD_DIR)/tools/node@$(NODE_VERSION)_%: | $(bin_dir)/scratch/node@$(NODE_VERSION)_% $(DOWNLOAD_DIR)/tools
$(LN) $(CURDIR)/$(bin_dir)/scratch/node@$(NODE_VERSION)_$*/bin/node $@

$(bin_dir)/downloaded/tools/npm@$(NPM_VERSION)_%: | $(bin_dir)/scratch/node@$(NPM_VERSION)_% $(bin_dir)/downloaded/tools
$(DOWNLOAD_DIR)/tools/npm@$(NPM_VERSION)_%: | $(bin_dir)/scratch/node@$(NPM_VERSION)_% $(DOWNLOAD_DIR)/tools
$(LN) $(CURDIR)/$(bin_dir)/scratch/node@$(NODE_VERSION)_$*/bin/npm $@

# Export the node bin dir so npm can work
Expand Down

0 comments on commit 9a40402

Please sign in to comment.