Fix alloc_jemalloc debug feature

At least, I think that's how it should be.  'debug' is how the feature is called in Cargo.toml.
This commit is contained in:
Ralf Jung 2017-08-03 23:39:23 -07:00
parent a12e4f8098
commit 7d9e26f788

View File

@ -111,7 +111,7 @@ fn main() {
cmd.arg("--with-jemalloc-prefix=je_");
}
if cfg!(feature = "debug-jemalloc") {
if cfg!(feature = "debug") {
cmd.arg("--enable-debug");
}