diff options
Diffstat (limited to 'import-layers/yocto-poky/scripts/oe-gnome-terminal-phonehome')
-rwxr-xr-x | import-layers/yocto-poky/scripts/oe-gnome-terminal-phonehome | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/import-layers/yocto-poky/scripts/oe-gnome-terminal-phonehome b/import-layers/yocto-poky/scripts/oe-gnome-terminal-phonehome new file mode 100755 index 000000000..e02354883 --- /dev/null +++ b/import-layers/yocto-poky/scripts/oe-gnome-terminal-phonehome @@ -0,0 +1,10 @@ +#!/bin/sh +# +# Gnome terminal won't tell us which PID a given command is run as +# or allow a single instance so we can't tell when it completes. +# This allows us to figure out the PID of the target so we can tell +# when its done. +# +echo $$ > $1 +shift +exec $@ |