diff options
Diffstat (limited to 'Modules/ld_so_aix')
-rwxr-xr-x | Modules/ld_so_aix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/ld_so_aix b/Modules/ld_so_aix index 76afa6e..6b83823 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 |