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
|
|
|