aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-14 18:41:07 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-14 18:41:07 -0600
commit3767efd290d9672b136a01e3b56db68c207c5755 (patch)
tree84c1c588e2223a2e55dd58b2a9f913fe37c523cc /src
parent37de70de9ac60c5d169b845420c349ecc5820a5c (diff)
downloadmakers-3767efd290d9672b136a01e3b56db68c207c5755.tar.gz
makers-3767efd290d9672b136a01e3b56db68c207c5755.zip
trace unexpanded command line
Diffstat (limited to 'src')
-rw-r--r--src/makefile/command_line.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/makefile/command_line.rs b/src/makefile/command_line.rs
index f9cd876..b7c3b23 100644
--- a/src/makefile/command_line.rs
+++ b/src/makefile/command_line.rs
@@ -84,6 +84,7 @@ impl CommandLine {
Token::MacroExpansion { name, .. } => name == "MAKE",
_ => false,
});
+ log::trace!("executing {}", &self.execution_line);
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;