mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-12 14:06:37 +08:00
* ltmain.in: Save exit status of link_command before removing
symbol table object file.
This commit is contained in:
parent
ac019c8a4e
commit
6aa96d9d4e
@ -1,3 +1,8 @@
|
||||
1999-04-29 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||
|
||||
* ltmain.in: Save exit status of link_command before removing
|
||||
symbol table object file.
|
||||
|
||||
1999-04-29 Gary V. Vaughan <gary@oranda.demon.co.uk>
|
||||
|
||||
* doc/PLATFORMS: updated my hpux-10.20 and cygwin box entries.
|
||||
|
@ -3093,14 +3093,15 @@ static const void *lt_preloaded_setup() {
|
||||
# We have no uninstalled library dependencies, so finalize right now.
|
||||
$show "$link_command"
|
||||
$run eval "$link_command"
|
||||
status=$?
|
||||
|
||||
# Delete the generated files.
|
||||
if test -n "$dlsyms"; then
|
||||
$show "$rm $output_objdir/${output}S.${objext}"
|
||||
$run $rm "$output_objdir/${output}S.${objext}"
|
||||
$show "$rm $output_objdir/${outputname}S.${objext}"
|
||||
$run $rm "$output_objdir/${outputname}S.${objext}"
|
||||
fi
|
||||
|
||||
exit $?
|
||||
exit $status
|
||||
fi
|
||||
|
||||
if test -n "$shlibpath_var"; then
|
||||
|
Loading…
Reference in New Issue
Block a user