2013/12/1 Zlobin Nikita <[email protected]>
> В письме от 1 декабря 2013 13:41:27 пользователь Karl Lindén написал: > > The error was due to the python-r1 eclasses' changed wrapping behaviour. > > The proper fix (which is future proof) is to search for the wmladi files > > and remove them. > > > > This is fixed in the latest revision (r2811). Please test it out! Thanks > > for the report! > > > > Regards, > > Karl > > > > 2013/11/30 Zlobin Nikita <[email protected]> > > > > > Ebuild is in archive in message: > > > http://www.mail-archive.com/[email protected]/msg05497.html > > > > > > Failed to install with USE=-wmaker, trying to remove unexisting > > > file. I added flags -rf to these commands which makes it invulnerable > to > > > this error - there is nothing to worry about, because their > unexistance is > > > goal of these commands. > I looked ebuild contents directly in email, reported by subversion. You are > grepping by simply "wmladi". This may affect not only wmladi* but rather > *wmladi*. Imho, it is better to not do patters wider than it is necessary > to > avoid unexpected issues. grep -E '^wmladi' should be fine. > > I'm not sure, what dir ${D}. If it is prefix or root instead if bindir > (/usr/bin), than it would cause huge bug - files in /usr/share and /usr/lib > will be removed as well. Examples of better full command, including find: > * find "${D}" | grep -F '/usr/bin/wmladi' > * find "${D}/usr/bin" | grep -E '^wmladi' > > Second, imho, is faster, because its work is as little as possible. And i > prefer to explicitly specify kind of grep pattern - fixed, extended, perl, > etc. > > >
