diff options
-rw-r--r-- | src/makefile/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/mod.rs b/src/makefile/mod.rs index bf4006a..d968bb3 100644 --- a/src/makefile/mod.rs +++ b/src/makefile/mod.rs @@ -352,7 +352,7 @@ impl<'a> Makefile<'a> { let targets = self.expand_macros(&targets, None); let targets = targets .split_whitespace() - .map(Into::into) + .map(String::from) .collect::<Vec<String>>(); let (prerequisites, mut commands) = match not_targets.split_once(';') { Some((prerequisites, mut command)) => { |