public inbox for gentoo-amd64@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-amd64] Python-updater line 415 error
@ 2009-08-03  4:36 Frank Peters
  2009-08-03  4:42 ` Lance Lassetter
  0 siblings, 1 reply; 14+ messages in thread
From: Frank Peters @ 2009-08-03  4:36 UTC (permalink / raw
  To: gentoo-amd64

I run python-updater.  I get this:

command substitution: line 415: syntax error near unexpected token `<'
command substitution: line 415: `scanelf -qBN ${OLD_SONAME} < <('

Python-updater is a bash script.  Checking the source reveals
this code at line 415:

broken_libs="$(scanelf -qBN ${OLD_SONAME} < <(
grep -e '^obj' ${content} | cut -d' ' -f2))"

Now, this line is a nested command substitution.  To fix, just
replace the second "<" character with "$":

 broken_libs="$(scanelf -qBN ${OLD_SONAME} < $(
grep -e '^obj' ${content} | cut -d' ' -f2))"


This fix removes the error message and allows python-updater to
check my system, but I now see some other messages which are,
to me, a bit puzzling.  Here is just one example of many:

/usr/bin/rgb2ycbcr: No such file or directory

The file rgb2ycbcr is there, as are all the other files that are
marked as missing.

Is python-updater working properly for everyone?  I searched
google and bugs.gentoo.org for the above line 415 error message but
found nothing, and I can't believe that no one else has so far
missed it.  A bug like this should have been spotted immediately,
yet re-emerging python-updater gives the same error.

Frank Peters




^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2009-08-04 16:30 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-03  4:36 [gentoo-amd64] Python-updater line 415 error Frank Peters
2009-08-03  4:42 ` Lance Lassetter
2009-08-03  5:59   ` Frank Peters
2009-08-03  6:07     ` Lance Lassetter
2009-08-03  6:16       ` Frank Peters
2009-08-03  6:21         ` Lance Lassetter
2009-08-03  6:28           ` Frank Peters
2009-08-03  6:44             ` Lance Lassetter
2009-08-03 12:31               ` Frank Peters
2009-08-03  7:12             ` [gentoo-amd64] " Duncan
2009-08-03  8:04               ` Lance Lassetter
2009-08-03 12:55               ` [gentoo-amd64] Re: Python-updater line 415 error [Solved] Frank Peters
2009-08-04 15:40                 ` Lance Lassetter
2009-08-04 16:29                   ` Frank Peters

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox