diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-03-28 15:28:41 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-02 18:16:24 +0100 |
commit | c0910f26ea0d692c6d22f2e3f87cf710b31fdf0a (patch) | |
tree | 02dbe932bed7f252c802574b14d80f7b5cc05b65 /meta/classes/update-rc.d.bbclass | |
parent | c47b7734614b28c740ad0eecf409f1e4c0288224 (diff) | |
download | poky-c0910f26ea0d692c6d22f2e3f87cf710b31fdf0a.tar.gz |
update-rc.d, systemd: redirect also stderr from type
* different shells different behavior?
bash prints 'type: update-rc.d: not found' on stderr
busybox's sh on stdout
(From OE-Core rev: 45e22312c48b23480bd6dff98702b0691a48f7d1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/update-rc.d.bbclass')
-rw-r--r-- | meta/classes/update-rc.d.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass index 9f1e28a59d..0c2b94a25b 100644 --- a/meta/classes/update-rc.d.bbclass +++ b/meta/classes/update-rc.d.bbclass | |||
@@ -18,7 +18,7 @@ if test "x$D" != "x"; then | |||
18 | else | 18 | else |
19 | OPT="-s" | 19 | OPT="-s" |
20 | fi | 20 | fi |
21 | if type update-rc.d >/dev/null; then | 21 | if type update-rc.d >/dev/null 2>/dev/null; then |
22 | update-rc.d $OPT ${INITSCRIPT_NAME} ${INITSCRIPT_PARAMS} | 22 | update-rc.d $OPT ${INITSCRIPT_NAME} ${INITSCRIPT_PARAMS} |
23 | fi | 23 | fi |
24 | } | 24 | } |
@@ -35,7 +35,7 @@ if test "$D" != ""; then | |||
35 | else | 35 | else |
36 | OPT="" | 36 | OPT="" |
37 | fi | 37 | fi |
38 | if type update-rc.d >/dev/null; then | 38 | if type update-rc.d >/dev/null 2>/dev/null; then |
39 | update-rc.d $OPT ${INITSCRIPT_NAME} remove | 39 | update-rc.d $OPT ${INITSCRIPT_NAME} remove |
40 | fi | 40 | fi |
41 | } | 41 | } |