lapack: Use double quotes instead of single.

Without this, this generates a warning / error when running rustdoc.
This commit is contained in:
Bruce Mitchener 2018-09-25 10:01:18 +07:00 committed by Sébastien Crozet
parent c56ec720eb
commit 8bd6be8fe1
2 changed files with 4 additions and 4 deletions

View File

@ -35,14 +35,14 @@ CBLAS:
export CARGO_FEATURE_EXCLUDE_LAPACKE=1
export CARGO_FEATURE_EXCLUDE_CBLAS=1
export CARGO_FEATURES='--no-default-features --features netlib'
export CARGO_FEATURES="--no-default-features --features netlib"
cargo build ${CARGO_FEATURES}
### Mac OS X
On Mac OS X, do this to use Apple's Accelerate framework:
export CARGO_FEATURES='--no-default-features --features accelerate'
export CARGO_FEATURES="--no-default-features --features accelerate"
cargo build ${CARGO_FEATURES}
[version-img]: https://img.shields.io/crates/v/nalgebra-lapack.svg

View File

@ -36,7 +36,7 @@
//! export CARGO_FEATURE_EXCLUDE_LAPACKE=1
//! export CARGO_FEATURE_EXCLUDE_CBLAS=1
//!
//! export CARGO_FEATURES='--no-default-features --features netlib'
//! export CARGO_FEATURES="--no-default-features --features netlib"
//! cargo build ${CARGO_FEATURES}
//! ```
//!
@ -45,7 +45,7 @@
//! On Mac OS X, do this to use Apple's Accelerate framework:
//!
//! ```.ignore
//! export CARGO_FEATURES='--no-default-features --features accelerate'
//! export CARGO_FEATURES="--no-default-features --features accelerate"
//! cargo build ${CARGO_FEATURES}
//! ```
//!