Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 285350 - Gentoo libxcb 1.4 Upgrade Guide: Rebuilding essential packages command should escape gtk+
Summary: Gentoo libxcb 1.4 Upgrade Guide: Rebuilding essential packages command should...
Status: RESOLVED FIXED
Alias: None
Product: Documentation
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: High minor
Assignee: Gentoo X packagers
URL: http://www.gentoo.org/proj/en/desktop...
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-09-17 18:51 UTC by Harm Geerts
Modified: 2009-09-17 21:41 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 Harm Geerts 2009-09-17 18:51:33 UTC
searching for x11-libs/gtk+ will match any package that contains x11-libs/gtk as the argument is treated like a regular expression. The + should be escaped to make it a literal string.

Like so:

# emerge --oneshot \
$(for i in x11-proto/ x11-libs/libxcb x11-libs/libX11 x11-libs/libXext \
           x11-libs/libX x11-libs/xcb-util x11-libs/cairo \
           x11-libs/pango x11-libs/gtk\\+ \
           x11-libs/qt-gui; do \
    qlist -IC $i; \
done) -pv


Reproducible: Always
Comment 1 Rémi Cardona (RETIRED) gentoo-dev 2009-09-17 21:41:20 UTC
Indeed, thanks much for the fix :)

Cheers