sys/build.rs: fix comment about {}_STATIC

This commit is contained in:
Dubiousjim 2020-06-24 13:53:45 -04:00 committed by Thom Chiovoloni
parent 4504eb0ae0
commit 32df49ca34

View File

@ -197,7 +197,7 @@ mod build_linked {
} }
fn find_link_mode() -> &'static str { fn find_link_mode() -> &'static str {
// If the user specifies SQLITE_STATIC (or SQLCIPHER_STATIC), do static // If the user specifies SQLITE3_STATIC (or SQLCIPHER_STATIC), do static
// linking, unless it's explicitly set to 0. // linking, unless it's explicitly set to 0.
match &env::var(format!("{}_STATIC", env_prefix())) { match &env::var(format!("{}_STATIC", env_prefix())) {
Ok(v) if v != "0" => "static", Ok(v) if v != "0" => "static",