Kaydet (Commit) 3fd4ea9d authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Issue #5726: Make Modules/ld_so_aix return the actual exit code of the linker,…

Issue #5726: Make Modules/ld_so_aix return the actual exit code of the linker, rather than always exit successfully.
Patch by Floris Bruynooghe.
üst 1fc0231a
...@@ -826,6 +826,9 @@ Tools/Demos ...@@ -826,6 +826,9 @@ Tools/Demos
Build 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 - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specify
the order that backends for the dbm extension are checked. the order that backends for the dbm extension are checked.
......
...@@ -181,7 +181,10 @@ $makexp $expfile "$objfile" $objs ...@@ -181,7 +181,10 @@ $makexp $expfile "$objfile" $objs
# Perform the link. # Perform the link.
#echo $CC $CCOPT $CCARGS #echo $CC $CCOPT $CCARGS
$CC $CCOPT $CCARGS $CC $CCOPT $CCARGS
retval=$?
# Delete the module's export list file. # Delete the module's export list file.
# Comment this line if you need it. # Comment this line if you need it.
rm -f $expfile rm -f $expfile
exit $retval
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment