[Python-checkins] r72182 - in python/branches/release26-maint: Misc/NEWS Modules/ld_so_aix

antoine.pitrou python-checkins at python.org
Fri May 1 23:24:57 CEST 2009


Author: antoine.pitrou
Date: Fri May  1 23:24:56 2009
New Revision: 72182

Log:
Merged revisions 72180 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72180 | antoine.pitrou | 2009-05-01 23:16:14 +0200 (ven., 01 mai 2009) | 4 lines
  
  Issue #5726: Make Modules/ld_so_aix return the actual exit code of the linker, rather than always exit successfully.
  Patch by Floris Bruynooghe.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Misc/NEWS
   python/branches/release26-maint/Modules/ld_so_aix

Modified: python/branches/release26-maint/Misc/NEWS
==============================================================================
--- python/branches/release26-maint/Misc/NEWS	(original)
+++ python/branches/release26-maint/Misc/NEWS	Fri May  1 23:24:56 2009
@@ -49,6 +49,12 @@
   makeunicodedata.py and regenerated the Unicode database (This fixes
   u'\u1d79'.lower() == '\x00').
 
+Build
+-----
+
+- Issue #5726: Make Modules/ld_so_aix return the actual exit code of the
+  linker, rather than always exit successfully. Patch by Floris Bruynooghe.
+
 Tests
 -----
 

Modified: python/branches/release26-maint/Modules/ld_so_aix
==============================================================================
--- python/branches/release26-maint/Modules/ld_so_aix	(original)
+++ python/branches/release26-maint/Modules/ld_so_aix	Fri May  1 23:24:56 2009
@@ -181,7 +181,10 @@
 # Perform the link.
 #echo $CC $CCOPT $CCARGS
 $CC $CCOPT $CCARGS
+retval=$?
 
 # Delete the module's export list file.
 # Comment this line if you need it.
 rm -f $expfile
+
+exit $retval


More information about the Python-checkins mailing list