Gentoo Archives: gentoo-commits

From: "John Christian Stoddart (chiguire)" <chiguire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in xml/htdocs/doc/es/handbook: hb-install-stage.xml
Date: Tue, 27 Jul 2010 13:39:18
Message-Id: 20100727133909.893292CE15@corvid.gentoo.org
1 chiguire 10/07/27 13:39:09
2
3 Modified: hb-install-stage.xml
4 Log:
5 updated arm arch info, autobuilds
6
7 Revision Changes Path
8 1.41 xml/htdocs/doc/es/handbook/hb-install-stage.xml
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/es/handbook/hb-install-stage.xml?rev=1.41&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/es/handbook/hb-install-stage.xml?rev=1.41&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/es/handbook/hb-install-stage.xml?r1=1.40&r2=1.41
13
14 Index: hb-install-stage.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/es/handbook/hb-install-stage.xml,v
17 retrieving revision 1.40
18 retrieving revision 1.41
19 diff -u -r1.40 -r1.41
20 --- hb-install-stage.xml 13 Jul 2010 14:12:22 -0000 1.40
21 +++ hb-install-stage.xml 27 Jul 2010 13:39:09 -0000 1.41
22 @@ -3,18 +3,18 @@
23 <!-- The content of this document is licensed under the CC-BY-SA license -->
24 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
25
26 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/es/handbook/hb-install-stage.xml,v 1.40 2010/07/13 14:12:22 nimiux Exp $ -->
27 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/es/handbook/hb-install-stage.xml,v 1.41 2010/07/27 13:39:09 chiguire Exp $ -->
28
29 <sections>
30
31 <abstract>
32 -Las instalaciones Gentoo funcionan por medio de un archivo stage3. En
33 +Las instalaciones Gentoo funcionan con un archivo stage3. En
34 este capítulo describimos como descomprimir el archivo stage3 y
35 configurar Portage.
36 </abstract>
37
38 -<version>10.3</version>
39 -<date>2010-07-12</date>
40 +<version>10.4</version>
41 +<date>2010-07-18</date>
42
43 <section>
44 <title>Instalando el Stage comprimido (tarball)</title>
45 @@ -451,15 +451,21 @@
46 un ejemplo:
47 </p>
48
49 -<pre test="not(func:keyval('arch')='AMD64')" caption="Definir las variables CFLAGS y CXXFLAGS">
50 +<pre test="not(contains('AMD64 arm', func:keyval('arch')))" caption="Definir las variables CFLAGS y CXXFLAGS">
51 CFLAGS="<keyval id="CFLAGS"/>"
52 -<comment># Utilice la misma configuración para las dos variables.</comment>
53 +<comment># Use la misma configuración para ambas variables.</comment>
54 CXXFLAGS="${CFLAGS}"
55 </pre>
56
57 <pre test="func:keyval('arch')='AMD64'" caption="Definir las variables CFLAGS y CXXFLAGS">
58 CFLAGS="<keyval id="CFLAGS"/>" <comment># Los usuarios de Intel EM64T deberán utilizar -march=core2</comment>
59 -<comment># Utilice la misma configuración para las dos variables.</comment>
60 +<comment># Use la misma configuración para las dos variables.</comment>
61 +CXXFLAGS="${CFLAGS}"
62 +</pre>
63 +
64 +<pre test="func:keyval('arch')='arm'" caption="Definir las variables CFLAGS y CXXFLAGS">
65 +CFLAGS="<keyval id="CFLAGS"/> <comment># Asegúrese de cambiar -march para corresponder al tipo de CPU</comment>
66 +<comment># Use la misma configuración para ambas variables</comment>
67 CXXFLAGS="${CFLAGS}"
68 </pre>