1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 17:39:31 +00:00
Files
poky/bitbake/bin/bitbake-runtask-strace
T
2010-11-14 21:08:27 -08:00

9 lines
191 B
Bash
Executable File

#!/bin/bash
STRACE=`which strace`
if [ ! -x "$STRACE" ]; then
bitbake-runtask $1 $2 $3 $4
else
strace -f -o $TRACE_LOGFILE-$3.log -e trace=open,execve bitbake-runtask $1 $2 $3 $4
fi