diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2012-03-15 22:08:09 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-03-15 22:11:25 +0100 |
commit | 1a994d58afcd401afd1581035f98adede78bcdd1 (patch) | |
tree | 8533bd318802fd57ee6878707cf587f4a08eb447 /package/busybox | |
parent | b23df14888f1bf464657c57db49f09bdc33042a8 (diff) |
Remove stray $ character from a bunch of init scripts
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/S01logging | 2 | ||||
-rw-r--r-- | package/busybox/S10mdev | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/busybox/S01logging b/package/busybox/S01logging index 581f192da..edece39f5 100644 --- a/package/busybox/S01logging +++ b/package/busybox/S01logging @@ -19,7 +19,7 @@ case "$1" in restart|reload) ;; *) - echo $"Usage: $0 {start|stop|restart}" + echo "Usage: $0 {start|stop|restart}" exit 1 esac diff --git a/package/busybox/S10mdev b/package/busybox/S10mdev index d2643d023..c06aa20b5 100644 --- a/package/busybox/S10mdev +++ b/package/busybox/S10mdev @@ -13,7 +13,7 @@ case "$1" in restart|reload) ;; *) - echo $"Usage: $0 {start|stop|restart}" + echo "Usage: $0 {start|stop|restart}" exit 1 esac |