Bug 556092
| Summary: | python : does not adhere to Static Library Packaging Guidelines | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Michael Schwendt <bugs.michael> |
| Component: | python | Assignee: | Dave Malcolm <dmalcolm> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | rawhide | CC: | dmalcolm, ivazqueznet, james.antill, jonathansteffan |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-01-18 22:54:50 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: | |||
|
Description
Michael Schwendt
2010-01-16 14:47:34 UTC
configure: WARNING: unrecognized options: --disable-static Makefile.pre.in has: all: build_all build_all: $(BUILDPYTHON) oldsharedmods sharedmods $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY) where $(LIBRARY) is the static library target, $(LDLIBRARY) the dynamic one. We could change things to not build it, or we could simply delete it after linking: I've chosen to patch the Makefile.pre.in to not build it. This also affects python3; the Makefiles are similar, and an analagous fix can be applied. Fix built into rawhide for python 2 in python-2.6.4-6.fc13: http://koji.fedoraproject.org/koji/taskinfo?taskID=1930184 Fix built into rawhide for python 3 in python3-3.1.1-17.fc13: http://koji.fedoraproject.org/koji/taskinfo?taskID=1930068 |