summaryrefslogtreecommitdiffstats
path: root/package/rpi-userland
diff options
context:
space:
mode:
authorMaxime Hadjinlian <maxime.hadjinlian@gmail.com>2015-10-03 23:29:57 +0200
committerPeter Korsgaard <peter@korsgaard.com>2015-10-04 00:56:41 +0200
commit0f75b2635ee564fbbdb9ea631cf39fa8731d6d6c (patch)
tree03d45236e3fe56c314f47aeb91c4b7f86d176079 /package/rpi-userland
parent60be80914fa263ecc06e907bc6d1249dbc80018a (diff)
downloadbuildroot-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/rpi-userland')
-rwxr-xr-xpackage/rpi-userland/S94vcfiled4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/rpi-userland/S94vcfiled b/package/rpi-userland/S94vcfiled
index a70e0ae67d..4d27b91bae 100755
--- a/package/rpi-userland/S94vcfiled
+++ b/package/rpi-userland/S94vcfiled
@@ -12,14 +12,14 @@ PIDFILE="/var/run/$NAME.pid"
start()
{
- echo -n "Starting $DESC: "
+ printf "Starting $DESC: "
start-stop-daemon -S -q -p "$PIDFILE" -x "$DAEMON" -- $DAEMON_ARGS &&
echo "done" || echo "failed"
}
stop()
{
- echo -n "Stopping $DESC: "
+ printf "Stopping $DESC: "
if start-stop-daemon -K -q -R TERM/30/KILL/5 -p "$PIDFILE" -n "$NAME"; then
# This daemon does not remove its PID file when it exits.
rm -f "$PIDFILE"
OpenPOWER on IntegriCloud