#889 closed defect (invalid)
/etc/profile.d/extrapaths.sh shows error messages if no /opt/*/lib/pkgconfig are found.
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | high | Milestone: | |
Component: | BOOK | Version: | ~5.1 |
Severity: | minor | Keywords: | |
Cc: |
Description ¶
In extrapaths.sh the line: for directory in $(find /opt/*/lib/pkgconfig -type d ); do
was giving me ugly error message spam when I was loggin in since I don't have much installed into /opt at this point. I updated the line in the scripts on my box to show :
for directory in $(find /opt/*/lib/pkgconfig -type d 2> /dev/null ); do
so that if nothing is found the error messages are suppressed.
Change History (3)
comment:1 by , 21 years ago
comment:2 by , 21 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
Already fixed in svn (since June).
Note:
See TracTickets
for help on using tickets.
Should have mentioned that this is on the blfs/postlfs/profile.html page of the book.