diff options
| author | Maxime Hadjinlian <maxime.hadjinlian@gmail.com> | 2015-10-03 23:29:57 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-10-04 00:56:41 +0200 |
| commit | 0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c (patch) | |
| tree | 03d45236e3fe56c314f47aeb91c4b7f86d176079 /package/dbus | |
| parent | 60be80914fa263ecc06e907bc6d1249dbc80018a (diff) | |
| download | buildroot-0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c.tar.gz buildroot-0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c.zip | |
package: Replace 'echo -n' by 'printf'
'echo -n' is not a POSIX construct (no flag support), we shoud use
'printf', especially in init script.
This patch was generated by the following command line:
git grep -l 'echo -n' -- `git ls-files | grep -v 'patch'` | xargs sed -i 's/echo -n/printf/'
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/dbus')
| -rw-r--r-- | package/dbus/S30dbus | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/dbus/S30dbus b/package/dbus/S30dbus index 0d15c73043..4427b5c72c 100644 --- a/package/dbus/S30dbus +++ b/package/dbus/S30dbus @@ -21,7 +21,7 @@ RETVAL=0 start() { - echo -n "Starting system message bus: " + printf "Starting system message bus: " dbus-uuidgen --ensure dbus-daemon --system @@ -31,7 +31,7 @@ start() { } stop() { - echo -n "Stopping system message bus: " + printf "Stopping system message bus: " ## we don't want to kill all the per-user $processname, we want ## to use the pid file *only*; because we use the fake nonexistent |

