Skip to content

Commit fb7c4c6

Browse files
committed
make from_build private
1 parent 8e5b45c commit fb7c4c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::env;
22

33
include!("src/dist/triple.rs");
44

5-
pub(crate) fn from_build() -> Result<PartialTargetTriple, String> {
5+
fn from_build() -> Result<PartialTargetTriple, String> {
66
let triple = if let Ok(triple) = env::var("RUSTUP_OVERRIDE_BUILD_TRIPLE") {
77
triple
88
} else {

0 commit comments

Comments
 (0)