mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
Where there isn't a copyright statement, add one to make it explicit. Also drop editor config lines where they were present and add license identifiers as MIT if there isn't one. (From OE-Core rev: deb3ccec53e0bd63bc4235cf2b0d3fc781687361) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
342 B
Bash
Executable File
15 lines
342 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# 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 $@
|