Issue #5726: Make Modules/ld_so_aix return the actual exit code of the linker, rather than always exit successfully.

Patch by Floris Bruynooghe.
This commit is contained in:
Antoine Pitrou 2009-05-01 21:16:14 +00:00
parent 1fc0231a22
commit 3fd4ea9dab
2 changed files with 6 additions and 0 deletions

View file

@ -826,6 +826,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.

View file

@ -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