Bug 592391
| Summary: | Typo in definition of python_sitearch in spec file | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Maximiliano Bertacchini <maxiberta> |
| Component: | wireshark | Assignee: | Radek Vokál <rvokal> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | 13 | CC: | jlayton, rvokal |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | wireshark-1.2.8-3.fc13 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-06-30 15:19:44 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: | |||
wireshark-1.2.8-3.fc13 has been submitted as an update for Fedora 13. http://admin.fedoraproject.org/updates/wireshark-1.2.8-3.fc13 Thanks for spotting it, updates are coming soon. wireshark-1.2.8-3.fc13 has been pushed to the Fedora 13 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update wireshark'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/wireshark-1.2.8-3.fc13 wireshark-1.2.8-3.fc13 has been pushed to the Fedora 13 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: The %{python_sitearch} variable (defined in wireshark.spec:1) has an extra trailing "}" which results in its value being "/usr/lib64/python2.6/site-packages}". This leads to python files being installed in this wrong directory instead of "/usr/lib64/python2.6/site-packages". Version-Release number of selected component (if applicable): 1.2.8-2.fc13 How reproducible: Just install wireshark-1.2.8-2.fc13 and check where the python files were installed. Steps to Reproduce: 1. yum install wireshark-1.2.8-2.fc13 2. rpm -ql wireshark | grep py Actual results: /usr/lib64/python2.6/site-packages}/wireshark_be.py /usr/lib64/python2.6/site-packages}/wireshark_be.pyc /usr/lib64/python2.6/site-packages}/wireshark_be.pyo /usr/lib64/python2.6/site-packages}/wireshark_gen.py /usr/lib64/python2.6/site-packages}/wireshark_gen.pyc /usr/lib64/python2.6/site-packages}/wireshark_gen.pyo Expected results: No "}" in the path. Additional info: AFAIK these python files are not needed in runtime, so this bug doesn't actually affect the execution of wireshark.