]> TLD Linux GIT Repositories - packages/rc-scripts.git/commitdiff
- one more fix for bash
authorMarcin Krol <hawk@tld-linux.org>
Sat, 17 May 2014 10:15:10 +0000 (10:15 +0000)
committerMarcin Krol <hawk@tld-linux.org>
Sat, 17 May 2014 10:15:10 +0000 (10:15 +0000)
rc-scripts-sh_fixes.patch

index 4827cdec2e51ce8572e423bb086a6538b4d9d324..bd66f655357af4ac592c59f45b4692884df7b49b 100644 (file)
@@ -1,3 +1,30 @@
+diff -ur rc-scripts-0.4.11.orig/rc.d/rc rc-scripts-0.4.11/rc.d/rc
+--- rc-scripts-0.4.11.orig/rc.d/rc     2013-11-18 21:13:37.000000000 +0000
++++ rc-scripts-0.4.11/rc.d/rc  2014-05-17 10:10:26.085999953 +0000
+@@ -147,14 +147,15 @@
+ text="$(termput op)$(nls '%sResource Manager: %sEntering runlevel number' "$af2" "$af7")"
+ text_size="$(nls '%sResource Manager: %sEntering runlevel number' "" "")"
+ resp_size="$(nls 'DONE')"
+-{
+-      local _len=${#text_size}
+-      local _last_col=$(($INIT_COL+${#resp_size}-${#runlevel}))
+-      while [ $((_len++)) -lt $_last_col ]; do
+-              text="$text."
+-      done
+-      echo -n "$text"
+-}
++
++_len=${#text_size}
++_last_col=$(($INIT_COL+${#resp_size}-${#runlevel}))
++while [ $((_len++)) -lt $_last_col ]; do
++      text="$text."
++done
++echo -n "$text"
++unset _len _last_col
++
+ echo "${af6}[${af2} $runlevel ${af6}]${af7}"
+ # Is there an rc directory for this new runlevel?
 diff -ur rc-scripts-0.4.11.orig/rc.d/rc.sysinit rc-scripts-0.4.11/rc.d/rc.sysinit
 --- rc-scripts-0.4.11.orig/rc.d/rc.sysinit     2014-03-02 10:02:29.000000000 +0000
 +++ rc-scripts-0.4.11/rc.d/rc.sysinit  2014-05-11 15:06:33.166000019 +0000