mk: Rename CFG_COMPILER to CFG_COMPILER_HOST_TRIPLE

Much clearer
This commit is contained in:
Brian Anderson 2014-03-25 19:23:45 -07:00
parent f772e31d64
commit d252539990
3 changed files with 4 additions and 4 deletions

View file

@ -800,7 +800,7 @@ pub fn host_triple() -> ~str {
// Instead of grabbing the host triple (for the current host), we grab (at
// compile time) the target triple that this rustc is built with and
// calling that (at runtime) the host triple.
(env!("CFG_COMPILER")).to_owned()
(env!("CFG_COMPILER_HOST_TRIPLE")).to_owned()
}
pub fn build_session_options(matches: &getopts::Matches) -> session::Options {