diff options
author | Melody Horn <melody@boringcactus.com> | 2021-04-14 14:28:59 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-04-14 14:28:59 -0600 |
commit | a17224fa6300452800c7162e9eb8948025a5dbb1 (patch) | |
tree | b4362e63d7b21c4e1952ab1917023983a568b5c9 /src/makefile/command_line.rs | |
parent | 280cab03189a22f2dec1dc2f97f985d092bbb24d (diff) | |
download | makers-a17224fa6300452800c7162e9eb8948025a5dbb1.tar.gz makers-a17224fa6300452800c7162e9eb8948025a5dbb1.zip |
always recurse when in dry-run etc mode
Diffstat (limited to 'src/makefile/command_line.rs')
-rw-r--r-- | src/makefile/command_line.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/makefile/command_line.rs b/src/makefile/command_line.rs index 1b4b4b4..f9cd876 100644 --- a/src/makefile/command_line.rs +++ b/src/makefile/command_line.rs @@ -80,6 +80,10 @@ impl CommandLine { } pub fn execute(&self, file: &Makefile, target: &Target) -> eyre::Result<()> { + let is_recursive = self.execution_line.tokens().any(|x| match x { + Token::MacroExpansion { name, .. } => name == "MAKE", + _ => false, + }); let execution_line = file.expand_macros(&self.execution_line, Some(target))?; let mut self_ignore_errors = self.ignore_errors; let mut self_silent = self.silent; @@ -110,8 +114,9 @@ impl CommandLine { println!("{}", execution_line); } - let should_execute = - self_always_execute || !(file.args.dry_run || file.args.question || file.args.touch); + let should_execute = self_always_execute + || is_recursive + || !(file.args.dry_run || file.args.question || file.args.touch); if !should_execute { return Ok(()); } |