summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Edgar <rocket@gentoo.org>2005-07-07 14:25:58 +0000
committerEric Edgar <rocket@gentoo.org>2005-07-07 14:25:58 +0000
commitb581d47abae7a41e64eb97f8401dea4722b75a7a (patch)
treeda28a32e94e2f18eb94ac5f89e185e41e9484d3c
parentChanged to use linux32 for ppc32 support when build host is ppc64. (diff)
downloadgentoo-b581d47abae7a41e64eb97f8401dea4722b75a7a.tar.gz
gentoo-b581d47abae7a41e64eb97f8401dea4722b75a7a.tar.bz2
gentoo-b581d47abae7a41e64eb97f8401dea4722b75a7a.zip
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
-rw-r--r--src/catalyst/ChangeLog7
-rw-r--r--src/catalyst/livecd/runscript-support/livecdfs-update.sh6
2 files changed, 9 insertions, 4 deletions
diff --git a/src/catalyst/ChangeLog b/src/catalyst/ChangeLog
index 4ca540423a..02de5a32bc 100644
--- a/src/catalyst/ChangeLog
+++ b/src/catalyst/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for gentoo/src/catalyst
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/Attic/ChangeLog,v 1.198.2.78 2005/07/06 22:07:18 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/Attic/ChangeLog,v 1.198.2.79 2005/07/07 14:25:58 rocket Exp $
+
+ 07 Jul 2005; Eric Edgar <rocket@gentoo.org>
+ livecd/runscript-support/livecdfs-update.sh:
+ 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
06 Jul 2005; Chris Gianelloni <wolf31o2@gentoo.org> arch/ppc.py:
Changed to use linux32 for ppc32 support when build host is ppc64.
diff --git a/src/catalyst/livecd/runscript-support/livecdfs-update.sh b/src/catalyst/livecd/runscript-support/livecdfs-update.sh
index 800605ae80..eebca5a18a 100644
--- a/src/catalyst/livecd/runscript-support/livecdfs-update.sh
+++ b/src/catalyst/livecd/runscript-support/livecdfs-update.sh
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript-support/Attic/livecdfs-update.sh,v 1.35.2.16 2005/07/05 21:47:46 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/livecd/runscript-support/Attic/livecdfs-update.sh,v 1.35.2.17 2005/07/07 14:25:58 rocket Exp $
/usr/sbin/env-update
source /etc/profile
@@ -41,7 +41,7 @@ then
then
for x in ${clst_livecd_rcadd}
do
- rc-update add "${x%%:*}" "${x##*:}"
+ rc-update add "${x%%|*}" "${x##*|}"
done
fi
@@ -49,7 +49,7 @@ then
then
for x in ${clst_livecd_rcdel}
do
- rc-update del "${x%%:*}" "${x##*:}"
+ rc-update del "${x%%|*}" "${x##*|}"
done
fi
fi