Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 220801 - Code listing repeated after CVS rev.1.4 to /doc/en/handbook/2008.0/hb-install-stage.xml
Summary: Code listing repeated after CVS rev.1.4 to /doc/en/handbook/2008.0/hb-install...
Status: RESOLVED FIXED
Alias: None
Product: [OLD] Docs on www.gentoo.org
Classification: Unclassified
Component: Installation Handbook (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Docs Team
URL: http://www.gentoo.org/doc/en/handbook...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-05-07 18:52 UTC by Davide Cendron (RETIRED)
Modified: 2008-05-07 20:17 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Davide Cendron (RETIRED) gentoo-dev 2008-05-07 18:52:16 UTC
After the above change, the code listing of stage tarball unpack is shown two times in ppc{,64} networkless handbooks.

The fix is easy: change the "or" in "and" in first <pre> test:

--- hb-install-stage.xml        2008-05-07 20:50:02.000000000 +0200
+++ hb-install-stage.xml        2008-05-07 20:50:16.000000000 +0200
@@ -92,7 +92,7 @@
 stage.
 </p>

-<pre caption="Extracting the stage tarball" test="not(func:keyval('arch')='PPC64') or not(func:keyval('arch')='PPC')">
+<pre caption="Extracting the stage tarball" test="not(func:keyval('arch')='PPC64') and not(func:keyval('arch')='PPC')">
 # <i>tar xvjpf /mnt/cdrom/stages/<keyval id="stage3"/></i>
 </pre>

God bless the logic tests 8)
Comment 1 nm (RETIRED) gentoo-dev 2008-05-07 20:17:51 UTC
Damn. I mean, thanks Davide. :)

Fixed!