diff options
author | Ross Burton <ross@openedhand.com> | 2008-07-04 09:18:47 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2008-07-04 09:18:47 +0000 |
commit | 0a62277934bd842292d8516fed9153044609266e (patch) | |
tree | e1b4c98a246833e61cccafb35c8df6d20a775582 /meta/packages/matchbox-keyboard | |
parent | 7ff4da3d7522cf7b567c47d806a4a42dd1670f89 (diff) | |
download | poky-0a62277934bd842292d8516fed9153044609266e.tar.gz |
matchbox-keyboard; don't spawn a subshell
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4818 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/matchbox-keyboard')
-rwxr-xr-x | meta/packages/matchbox-keyboard/files/80matchboxkeyboard | 2 | ||||
-rw-r--r-- | meta/packages/matchbox-keyboard/matchbox-keyboard_svn.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/packages/matchbox-keyboard/files/80matchboxkeyboard b/meta/packages/matchbox-keyboard/files/80matchboxkeyboard index 06d45bb9c0..7c775af0eb 100755 --- a/meta/packages/matchbox-keyboard/files/80matchboxkeyboard +++ b/meta/packages/matchbox-keyboard/files/80matchboxkeyboard | |||
@@ -17,5 +17,5 @@ fi | |||
17 | # Delay to make sure the window manager is active | 17 | # Delay to make sure the window manager is active |
18 | 18 | ||
19 | if [ "$CMD" ]; then | 19 | if [ "$CMD" ]; then |
20 | (sleep 2 && $CMD) & | 20 | { sleep 2 ; $CMD ; } & |
21 | fi | 21 | fi |
diff --git a/meta/packages/matchbox-keyboard/matchbox-keyboard_svn.bb b/meta/packages/matchbox-keyboard/matchbox-keyboard_svn.bb index 205c0fc0d3..13635cbaf1 100644 --- a/meta/packages/matchbox-keyboard/matchbox-keyboard_svn.bb +++ b/meta/packages/matchbox-keyboard/matchbox-keyboard_svn.bb | |||
@@ -4,7 +4,7 @@ DEPENDS = "libfakekey expat libxft gtk+ matchbox-panel-2" | |||
4 | RDEPENDS = "formfactor" | 4 | RDEPENDS = "formfactor" |
5 | SECTION = "x11" | 5 | SECTION = "x11" |
6 | PV = "0.0+svnr${SRCREV}" | 6 | PV = "0.0+svnr${SRCREV}" |
7 | PR = "r1" | 7 | PR = "r2" |
8 | 8 | ||
9 | SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ | 9 | SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \ |
10 | file://configure_fix.patch;patch=1;maxrev=1819 \ | 10 | file://configure_fix.patch;patch=1;maxrev=1819 \ |