From: Antoine Pitrou Date: Fri, 1 May 2009 21:18:27 +0000 (+0000) Subject: Merged revisions 72180 via svnmerge from X-Git-Tag: v3.1b1~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8966c99bb5a6c15d9963a5ad394f1ff01c036164;p=python 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. ........ --- diff --git a/Misc/NEWS b/Misc/NEWS index 2a5e2e67da..ba398c7b94 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -892,6 +892,9 @@ Tools/Demos 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. + - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify the order that backends for the dbm extension are checked. diff --git a/Modules/ld_so_aix b/Modules/ld_so_aix index 76afa6e485..6b83823d19 100755 --- a/Modules/ld_so_aix +++ b/Modules/ld_so_aix @@ -181,7 +181,10 @@ $makexp $expfile "$objfile" $objs # 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