typo and message simplification
This commit is contained in:
parent
e79e1a1e06
commit
d98f33c983
2 changed files with 2 additions and 2 deletions
|
@ -99,7 +99,7 @@ rule cc_{name}
|
||||||
}
|
}
|
||||||
ret.push_str(&format!(
|
ret.push_str(&format!(
|
||||||
"
|
"
|
||||||
description = Building $in -> $out
|
description = Building $out
|
||||||
rule link_{name}
|
rule link_{name}
|
||||||
command = "
|
command = "
|
||||||
));
|
));
|
||||||
|
|
|
@ -53,7 +53,7 @@ fn main() {
|
||||||
.get_inheritance_order()
|
.get_inheritance_order()
|
||||||
.unwrap_or_else(|e| panic!("{e}. cannot continue. Exiting"));
|
.unwrap_or_else(|e| panic!("{e}. cannot continue. Exiting"));
|
||||||
|
|
||||||
let mut target_list: TargetList = TargetList(HashMap::new());
|
let mut target_list = TargetList(HashMap::new());
|
||||||
for order in &inheritance_order {
|
for order in &inheritance_order {
|
||||||
for name in order.iter().rev() {
|
for name in order.iter().rev() {
|
||||||
if target_list.0.get(name as &str).is_some() {
|
if target_list.0.get(name as &str).is_some() {
|
||||||
|
|
Loading…
Reference in a new issue