Skip to content

Commit e659ace

Browse files
committed
Rename SHARED_BUILD_CACHE to CACHE
1 parent ab3147e commit e659ace

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
@@ -34,11 +34,11 @@ exclude = [
3434
[features]
3535
default = ["cblas", "lapacke"]
3636

37+
cache = []
3738
cblas = []
3839
lapacke = []
3940
static = []
4041
system = []
41-
shared-build-cache = []
4242

4343
[dev-dependencies]
4444
libc = "0.2"

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fn main() {
3232
_ => variable!("TARGET"),
3333
};
3434
env::remove_var("TARGET");
35-
let source = if feature!("SHARED_BUILD_CACHE") {
35+
let source = if feature!("CACHE") {
3636
PathBuf::from(format!("source_{}", target.to_lowercase()))
3737
} else {
3838
output.join(format!("source_{}", target.to_lowercase()))

0 commit comments

Comments
 (0)