Skip to content

Commit d468b25

Browse files
committed
Bump 0.1.28
1 parent a02d3b4 commit d468b25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cmake"
3-
version = "0.1.27"
3+
version = "0.1.28"
44
authors = ["Alex Crichton <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ impl Config {
497497
// Only do this on non-windows as we could actually be
498498
// invoking make instead of mingw32-make which doesn't
499499
// work with our jobserver
500-
Some(s) _ if !cfg!(windows) => makeflags = Some(s),
500+
Some(ref s) if !cfg!(windows) => makeflags = Some(s.clone()),
501501

502502
// This looks like `make`, let's hope it understands `-jN`.
503503
_ => parallel_args.push(format!("-j{}", s)),

0 commit comments

Comments
 (0)