Browse Source

Always run lists if they contain something that has no provides info

master
Adrian Heine 4 years ago
parent
commit
e4b3424ba6
  1. 2
      src/symbols/list.rs

2
src/symbols/list.rs

@ -48,6 +48,8 @@ impl Symbol for List<'_> {
for symbol in &self.symbols {
if let Some(provides) = symbol.provides() {
r.extend(provides.into_iter());
} else {
return None;
}
}
if r.is_empty() {

Loading…
Cancel
Save