aboutsummaryrefslogtreecommitdiff
path: root/yapymake
diff options
context:
space:
mode:
Diffstat (limited to 'yapymake')
-rw-r--r--yapymake/makefile/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yapymake/makefile/__init__.py b/yapymake/makefile/__init__.py
index 483b071..09dcb93 100644
--- a/yapymake/makefile/__init__.py
+++ b/yapymake/makefile/__init__.py
@@ -446,7 +446,7 @@ class CommandLine:
'-' if self.ignore_errors else '',
'@' if self.silent else '',
'+' if self.always_execute else '',
- str(self.execution_line)
+ str(self.execution_line).replace('\n', '↵\n')
])
def execute(self, file: Makefile, current_target: 'Target') -> None: