diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2023-09-20 09:12:04 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 09:12:04 +1000 |
commit | b3e60a128e547b35f9200dd3e4841ce80283f4ae (patch) | |
tree | ac2b0e46f2ab0ccb21f574c5498a2d53982deb21 | |
parent | adb48f0b98d778d9d1b26e25d34deb5dc04d5248 (diff) | |
parent | e641616f2f78d20a28885ebc7475a29ee0c14b39 (diff) |
Merge pull request #23755 from garbear/fix-rustup
tools/depends: Fix rustup by delegating shell choice to shebang
-rw-r--r-- | tools/depends/native/rustup/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/native/rustup/Makefile b/tools/depends/native/rustup/Makefile index 13d145cccd..0c699b952d 100644 --- a/tools/depends/native/rustup/Makefile +++ b/tools/depends/native/rustup/Makefile @@ -26,7 +26,7 @@ $(PLATFORM): $(DEPS) | $(TARBALLS_LOCATION)/$(ARCHIVE).$(HASH_TYPE) cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) $(APP): $(PLATFORM) - bash $(PLATFORM)/rustup-init.sh -y --no-modify-path \ + ./$(PLATFORM)/rustup-init.sh -y --no-modify-path \ --profile minimal \ --default-toolchain=$(RUST_TOOLCHAIN_VERSION) |