This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ld_so_aix does exit successfully even in case of failure
Type: compile error Stage: commit review
Components: Build Versions: Python 3.0, Python 3.1, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: flub, pitrou
Priority: normal Keywords: patch

Created on 2009-04-09 09:54 by flub, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
ld_so_aix.diff flub, 2009-04-09 09:54 Patch ld_so_aix to use correct exit code
Messages (3)
msg85807 - (view) Author: Floris Bruynooghe (flub) Date: 2009-04-09 09:54
ld_so_aix is used to invoke the linker correctly on AIX.  However when
the linking fails the script happily returns 0 and a Makefile using it
will assume all went well.

See the trivial patch attached.
msg85986 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-04-15 10:14
The patch looks good to me.
msg86912 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-05-01 21:22
Committed, thanks!
History
Date User Action Args
2022-04-11 14:56:47adminsetgithub: 49976
2009-05-01 21:22:49pitrousetstatus: open -> closed
resolution: accepted -> fixed
messages: + msg86912
2009-04-15 10:14:45pitrousetpriority: normal

versions: - Python 2.5
nosy: + pitrou

messages: + msg85986
resolution: accepted
stage: commit review
2009-04-09 09:54:43flubcreate