summaryrefslogtreecommitdiff
path: root/wrapper
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-03-14 21:31:48 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-03-14 21:31:48 -0400
commit7190864de465c3c3b015540ca45c9d9bccb5b790 (patch)
tree017983b755b90aea72e23c84c3b23a13fef7fb58 /wrapper
parent94cacc84d322429e70485dea49bb858f48aa26c8 (diff)
more stuff
Diffstat (limited to 'wrapper')
-rw-r--r--wrapper/runcmd.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrapper/runcmd.mk b/wrapper/runcmd.mk
index cdfa897..40e791e 100644
--- a/wrapper/runcmd.mk
+++ b/wrapper/runcmd.mk
@@ -11,6 +11,6 @@ export OUTPUT_DIR := $(realpath .)
$(MAKECMDGOALS): % : $(EXEC_PATH)/modules/%
mkdir -p -- '$(@D)'
- (cd $(CWD) && '$<' $(ARGS)) | tee -- '$@' | sed 's,^,$@:,' >&2
+ { (cd $(CWD) && '$<' $(ARGS)) | tee -- '$@' >&2; } 2>&1 | sed 's,^,$@:,' >&2
include $(wildcard $(EXEC_PATH)/modules/*.mk)