Skip to content

Commit 2a462f9

Browse files
authored
Merge pull request #195 from davidhewitt/target-option
cli: fix --target being unable to take a value
2 parents 3a9d862 + aefe8dc commit 2a462f9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44
### Fixed
55
- Fix regression from `setuptools-rust` 1.1.0 which broke builds for the `x86_64-unknown-linux-musl` target. [#194](https://github.com/PyO3/setuptools-rust/pull/194)
6+
- Fix `--target` command line option being unable to take a value. [#195](https://github.com/PyO3/setuptools-rust/pull/195)
67

78
## 1.1.0 (2021-11-30)
89
### Added

setuptools_rust/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class build_rust(RustCommand):
5151
"t",
5252
"directory for temporary files (cargo 'target' directory) ",
5353
),
54-
("target", None, "Build for the target triple"),
54+
("target=", None, "Build for the target triple"),
5555
]
5656
boolean_options = ["inplace", "debug", "release", "qbuild"]
5757

0 commit comments

Comments
 (0)