Gentoo Archives: gentoo-commits

From: "Chris Gianelloni (wolf31o2)" <wolf31o2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] catalyst r1347 - in trunk: . targets/stage1
Date: Fri, 29 Feb 2008 20:34:09
Message-Id: E1JVBvj-000275-ER@stork.gentoo.org
1 Author: wolf31o2
2 Date: 2008-02-29 20:34:06 +0000 (Fri, 29 Feb 2008)
3 New Revision: 1347
4
5 Modified:
6 trunk/ChangeLog
7 trunk/targets/stage1/stage1-controller.sh
8 Log:
9 Remove code for gcc-config/binutils-config since it should be getting done in the preclean script, anyway.
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2008-02-29 17:15:14 UTC (rev 1346)
14 +++ trunk/ChangeLog 2008-02-29 20:34:06 UTC (rev 1347)
15 @@ -2,6 +2,11 @@
16 # $Id: $
17
18 29 Feb 2008; Chris Gianelloni <wolf31o2@g.o>
19 + targets/stage1/stage1-controller.sh:
20 + Remove code for gcc-config/binutils-config since it should be getting done
21 + in the preclean script, anyway.
22 +
23 + 29 Feb 2008; Chris Gianelloni <wolf31o2@g.o>
24 targets/stage1/stage1-chroot.sh:
25 I missed one place where HOSTUSE was being used incorrectly.
26
27
28 Modified: trunk/targets/stage1/stage1-controller.sh
29 ===================================================================
30 --- trunk/targets/stage1/stage1-controller.sh 2008-02-29 17:15:14 UTC (rev 1346)
31 +++ trunk/targets/stage1/stage1-controller.sh 2008-02-29 20:34:06 UTC (rev 1347)
32 @@ -22,30 +22,6 @@
33 || exit 1
34 ;;
35 preclean)
36 - # Before we enter the chroot, we need to run gcc-config/binutils-config
37 - if [ -x /usr/bin/gcc-config ] && [ -z "${clst_FETCH}" ]
38 - then
39 - mythang=$( cd ${clst_chroot_path}/tmp/stage1root/etc/env.d/gcc; ls ${clst_CHOST}-* | head -n 1 )
40 - if [ -z "${mythang}" ]
41 - then
42 - mythang=1
43 - fi
44 - ROOT=${clst_chroot_path}/tmp/stage1root/ \
45 - CHOST=${clst_CHOST} \
46 - gcc-config ${mythang}
47 - fi
48 - if [ -x /usr/bin/binutils-config ] && [ -z "${clst_FETCH}" ]
49 - then
50 - mythang=$( cd ${clst_chroot_path}/tmp/stage1root/etc/env.d/binutils; ls ${clst_CHOST}-* | head -n 1 )
51 - if [ -z "${mythang}" ]
52 - then
53 - mythang=1
54 - fi
55 - ROOT=${clst_chroot_path}/tmp/stage1root/ \
56 - CHOST=${clst_CHOST} \
57 - binutils-config ${mythang}
58 - fi
59 -
60 exec_in_chroot ${clst_sharedir}/targets/${clst_target}/${clst_target}-preclean-chroot.sh /tmp/stage1root || exit 1
61 ;;
62 clean)
63
64 --
65 gentoo-commits@l.g.o mailing list