mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
Fix build errors in gaflib projects. This might kill some functionality, not sure. Signed-off-by: Jan Lindemann <jan@janware.com>
7 lines
152 B
Bash
7 lines
152 B
Bash
#!/bin/bash
|
|
|
|
shift # get rid of the '-c' supplied by make.
|
|
log=/tmp/make-cmds.log
|
|
echo running "$*" >> $log
|
|
time /bin/bash -c "$*" 2>&1 | tee -a $log
|
|
|