Summary: | net-dns/avahi-0.6.30-r2[-python] fails in src_install | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Ulrich Müller <ulm> |
Component: | New packages | Assignee: | Maxim Koltsov (RETIRED) <maksbotan> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | idella4, marduk, swegener |
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Attachments: | build.log |
Description
Ulrich Müller
![]() Fixed. Sorry for breaking packages. (In reply to comment #1) > Fixed. > Sorry for breaking packages. It still fails with USE="-python": ERROR: net-dns/avahi-0.6.30-r2 failed (install phase): (no error message) Call stack: ebuild.sh, line 85: Called src_install environment, line 5811: Called die The specific snippet of code: use python && python_convert_shebangs 2 "${ED}"usr/bin/avahi-discover || die; In bash, && and || have equal precedence, so they're executed with left associativity. So the above won't work. Suggested fix: if use python; then python_convert_shebangs 2 "${ED}"usr/bin/avahi-discover || die fi This is really bad day :( Hope it's fixed finally. |