diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2023-09-19 20:23:20 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-19 20:23:20 +0200 |
| commit | c5f215af33604dc1fbaa71282238e61a899ceafc (patch) | |
| tree | be223d78e470236da8a9d2aa9cb555642c381822 | |
| parent | 52a0d136f5c542846c7ccc17c12103a9d547a76a (diff) | |
| parent | 0944860f35b469bd427ea265a4bfe389769ab1a6 (diff) | |
| download | rust-c5f215af33604dc1fbaa71282238e61a899ceafc.tar.gz rust-c5f215af33604dc1fbaa71282238e61a899ceafc.zip | |
Rollup merge of #115957 - cuishuang:master, r=GuillaumeGomez
fix mismatched symbols
| -rw-r--r-- | src/bootstrap/job.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/job.rs b/src/bootstrap/job.rs index 4fb00f65dc1..b0a97b540ec 100644 --- a/src/bootstrap/job.rs +++ b/src/bootstrap/job.rs @@ -134,7 +134,7 @@ pub unsafe fn setup(build: &mut Build) { // If this failed, well at least we tried! An example of DuplicateHandle // failing in the past has been when the wrong python2 package spawned this // build system (e.g., the `python2` package in MSYS instead of - // `mingw-w64-x86_64-python2`. Not sure why it failed, but the "failure + // `mingw-w64-x86_64-python2`). Not sure why it failed, but the "failure // mode" here is that we only clean everything up when the build system // dies, not when the python parent does, so not too bad. if r.is_err() { |
