Bug 795107
| Summary: | xfce4-mpc-plugin 0.4.1-1 contains unstripped *.so | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Ville Skyttä <ville.skytta> |
| Component: | xfce4-mpc-plugin | Assignee: | Christoph Wickert <christoph.wickert> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | rawhide | CC: | christoph.wickert |
| Target Milestone: | --- | Keywords: | Patch, Regression |
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | xfce4-mpc-plugin-0.4.2-1.fc17 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2012-02-28 10:58:00 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 496968 | ||
Thanks for the heads-up, fix is on it's way. xfce4-mpc-plugin-0.4.1-2.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/FEDORA-2012-1727/xfce4-mpc-plugin-0.4.1-2.fc17 Package xfce4-mpc-plugin-0.4.1-2.fc17: * should fix your issue, * was pushed to the Fedora 17 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing xfce4-mpc-plugin-0.4.1-2.fc17' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2012-1727/xfce4-mpc-plugin-0.4.1-2.fc17 then log in and leave karma (feedback). Package xfce4-mpc-plugin-0.4.2-1.fc17: * should fix your issue, * was pushed to the Fedora 17 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing xfce4-mpc-plugin-0.4.2-1.fc17' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2012-1727/xfce4-mpc-plugin-0.4.2-1.fc17 then log in and leave karma (feedback). xfce4-mpc-plugin-0.4.2-1.fc17 has been pushed to the Fedora 17 stable repository. If problems still persist, please make note of it in this bug report. |
xfce4-mpc-plugin 0.4.1-1 contains unstripped *.so, for some reason it's installed with modes 644 whereas it was and should be 755 so rpmbuild will strip it. One quick way to fix it: --- a/xfce4-mpc-plugin.spec +++ b/xfce4-mpc-plugin.spec @@ -38,2 +38,3 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' +chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so find %{buildroot} -name '*.la' -exec rm -f {} ';'