Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 205782 - ruby.eclass - unsafe locale-dependent patterns usage
Summary: ruby.eclass - unsafe locale-dependent patterns usage
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: High minor (vote)
Assignee: Gentoo Ruby Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-01-14 12:18 UTC by Jakub Moc (RETIRED)
Modified: 2008-01-20 07:04 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 Jakub Moc (RETIRED) gentoo-dev 2008-01-14 12:18:53 UTC
-for i in ChangeLog* [A-Z][A-Z]* ; do
+for i in ChangeLog* [:upper:][:upper:]* ; do

is probably what you want.
Comment 1 Hans de Graaff gentoo-dev Security 2008-01-20 07:04:30 UTC
Additional quoting is needed to make this work:

  for i in ChangeLog* [[:upper:]][[:upper:]]* ; do

This also re-fixes #129526 in a bit nicer way, thanks.