Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 156114 - Error in code listing in 2006.11.20 GWN.
Summary: Error in code listing in 2006.11.20 GWN.
Status: RESOLVED FIXED
Alias: None
Product: Websites
Classification: Unclassified
Component: [OLD] News (show other bugs)
Hardware: All Linux
: High major (vote)
Assignee: Xavier Neys (RETIRED)
URL: http://www.gentoo.org/news/en/gwn/200...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-11-24 03:51 UTC by Antek Grzymała (antoszka)
Modified: 2006-11-29 07:47 UTC (History)
1 user (show)

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 Antek Grzymała (antoszka) 2006-11-24 03:51:20 UTC
Code listing 2.1 is:

cd /var/db/pkg && emerge -va1 $(for pkg in */*; do cut -d' ' -f2 "${pkg}"/CONTENTS | grep -q '^/sbin/' && echo "=${pkg}" done)

Should be:

cd /var/db/pkg && emerge -va1 $(for pkg in */*; do cut -d' ' -f2 "${pkg}"/CONTENTS | grep -q '^/sbin/' && echo "=${pkg}"; done)

(Missing semicolon).

Pass it on to the translators as well I suppose or something.
Comment 1 Xavier Neys (RETIRED) gentoo-dev 2006-11-29 07:36:25 UTC
Not an infra bug
Comment 2 Xavier Neys (RETIRED) gentoo-dev 2006-11-29 07:47:14 UTC
Fixed in original and already translated versions.

Thanks for reporting.