Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 67562 - strip-linguas unsets LINGUAS (error at eutils.eclass line #1428, variable nl should be newls)
Summary: strip-linguas unsets LINGUAS (error at eutils.eclass line #1428, variable nl ...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: SpanKY
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-10-14 09:27 UTC by lirico
Modified: 2004-10-15 12:49 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 lirico 2004-10-14 09:27:45 UTC
error: strip-linguas unsets LINGUAS

I've got this eutils.eclass:
   # $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.118 2004/10/13 14:33:01 vapier Exp $

and the line #1428 shows (tabs omitted):
   nl="${newls} ${f}"

while it must be:
   newls="${newls} ${f}"

This is probably a renaming mistake (maybe it was nl, then when renaming to newls this was accidentaly left).


Reproducible: Always
Steps to Reproduce:
1.
2.
3.




fixed with:

sed -i -e '1428s;nl=;newls=;' /usr/portage/eclass/eutils.eclass
Comment 1 SpanKY gentoo-dev 2004-10-15 12:49:00 UTC
yeah, was a renaming mistake ... i had another var in there and then realized i didnt need it :)

thanks, fixed in cvs