aboutsummaryrefslogtreecommitdiff
path: root/trunk/src/simplaret
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-14 14:03:49 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-14 14:03:49 +0000
commit817166012a43f1274f800addabbbf288aeb8e3b7 (patch)
tree3dcee66ea23ffaa83f1385465a96edfa3eddb40b /trunk/src/simplaret
parentc539c1644768ff8018a4e11657669ddadd8ad732 (diff)
downloadsimplepkg-817166012a43f1274f800addabbbf288aeb8e3b7.tar.gz
simplepkg-817166012a43f1274f800addabbbf288aeb8e3b7.tar.bz2
see CHANGELOG
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@653 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src/simplaret')
-rwxr-xr-xtrunk/src/simplaret16
1 files changed, 8 insertions, 8 deletions
diff --git a/trunk/src/simplaret b/trunk/src/simplaret
index 59fc3fd..700c3bc 100755
--- a/trunk/src/simplaret
+++ b/trunk/src/simplaret
@@ -995,13 +995,13 @@ function simplaret_set_arch {
local repos_type new_arch
- # any arch defined in ARCH_i386 that hasn't an entry
- # on $REPOS_CONF will be mapped to i386
+ # any arch defined in ARCH_i486 that hasn't an entry
+ # on $REPOS_CONF will be mapped to i486
- ARCH_i386=" nocona prescott pentium4m pentium4 pentium-m pentium3m pentium3 "
- ARCH_i386="$ARCH_i386 pentium2 i686 pentium-pro i586 pentium-mmx pentium i486 "
- ARCH_i386="$ARCH_i386 athlon-mp athlon-xp athlon4 athlon-tbird athlon k6 k6-2 "
- ARCH_i386="$ARCH_i386 k6-3 winchip-c6 winchip2 c3 c3-2 i386 "
+ ARCH_i486=" nocona prescott pentium4m pentium4 pentium-m pentium3m pentium3 "
+ ARCH_i486="$ARCH_i486 pentium2 i686 pentium-pro i586 pentium-mmx pentium i486 "
+ ARCH_i486="$ARCH_i486 athlon-mp athlon-xp athlon4 athlon-tbird athlon k6 k6-2 "
+ ARCH_i486="$ARCH_i486 k6-3 winchip-c6 winchip2 c3 c3-2 "
# any arch defined in ARCH_x86_64 that hasn't an entry
# on $REPOS_CONF will be mapped to x86_64
@@ -1011,8 +1011,8 @@ function simplaret_set_arch {
for repos_type in patches root repos noarch; do
if [ -z "`simplaret_repository $repos_type`" ]; then
# there's no repository definition for that arch
- if echo "$ARCH_i386" | grep -q " $ARCH "; then
- new_arch="i386"
+ if echo "$ARCH_i486" | grep -q " $ARCH "; then
+ new_arch="i486"
elif echo "$ARCH_x86_64" | grep -q " $ARCH "; then
new_arch="x86_64"
else