From: Eric Edgar Date: Thu, 7 Jul 2005 14:27:31 +0000 (+0000) Subject: fix bug 98165. Change the separator on rcadd/rcdel from : to | This will impact... X-Git-Tag: CATALYST_2_0_6_916~691 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=490f1594c2a4a0d04ce0057db703c7d53bdeea0a;p=catalyst.git fix bug 98165. Change the separator on rcadd/rcdel from : to | This will impact all previous spec files that use this option. Its beejays fault git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@759 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/targets/support/rc-update.sh b/targets/support/rc-update.sh index dcbc7334..bff80806 100644 --- a/targets/support/rc-update.sh +++ b/targets/support/rc-update.sh @@ -48,7 +48,7 @@ then then for x in ${clst_rcadd} do - rc-update add "${x%%:*}" "${x##*:}" + rc-update add "${x%%|*}" "${x##*|}" done fi @@ -56,7 +56,7 @@ then then for x in ${clst_rcdel} do - rc-update del "${x%%:*}" "${x##*:}" + rc-update del "${x%%|*}" "${x##*|}" done fi fi