diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-10-18 04:11:05 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-18 04:11:05 +0900 |
| commit | 83ee3198220b9738f6e4f04bfbdcf3481d5c7b59 (patch) | |
| tree | c8a21a73fc9ccc8bc48eea4c41f177f522cca47a /src/bootstrap | |
| parent | d10b98d7a5c57369f102f7f15789014ceba8a6c8 (diff) | |
| parent | 05c9c0ee5dcd935f518db151bee2dc88380fb92f (diff) | |
| download | rust-83ee3198220b9738f6e4f04bfbdcf3481d5c7b59.tar.gz rust-83ee3198220b9738f6e4f04bfbdcf3481d5c7b59.zip | |
Rollup merge of #76607 - Mark-Simulacrum:tidy-bins, r=pnkfelix
Modify executable checking to be more universal This uses a dummy file to check if the filesystem being used supports the executable bit in general. Supersedes #74753.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/test.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index bda9e0f5784..33e85dc5e2a 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -737,6 +737,7 @@ impl Step for Tidy { let mut cmd = builder.tool_cmd(Tool::Tidy); cmd.arg(&builder.src); cmd.arg(&builder.initial_cargo); + cmd.arg(&builder.out); if builder.is_verbose() { cmd.arg("--verbose"); } |
