Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 211383 - media-gfx/splashutils-1.4.3-r1: ls print unwanted messages on the console
Summary: media-gfx/splashutils-1.4.3-r1: ls print unwanted messages on the console
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High trivial (vote)
Assignee: Michal Januszewski (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-02-25 14:44 UTC by Jimmy.Jazz
Modified: 2008-02-25 23:04 UTC (History)
0 users

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


Attachments
splash-function-bl1.sh (splashutils.patch,1.12 KB, patch)
2008-02-25 14:47 UTC, Jimmy.Jazz
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jimmy.Jazz 2008-02-25 14:44:39 UTC
/sbin/splash-functions-bl1.sh does not filter correctly ls output: stderr redirection has to be applied to ls not to cut.

ls -ld --full-time ${spl_cachedir}/deptree | cut -f6,7,8 -d' ' 2>/dev/null

should be,

ls -ld --full-time ${spl_cachedir}/deptree 2>/dev/null | cut -f6,7,8 -d' '

Reproducible: Always

Actual Results:  
at boot time, returns

ls: //lib64/splash/cache/deptree ...: No such file or directory
Comment 1 Jimmy.Jazz 2008-02-25 14:47:46 UTC
Created attachment 144583 [details, diff]
splash-function-bl1.sh
Comment 2 Michal Januszewski (RETIRED) gentoo-dev 2008-02-25 23:04:55 UTC
Fixed in 1.5.4.  Thanks for reporting the problem :)