From: Ralf Wildenhues Date: Sun, 28 Nov 2004 19:54:25 +0000 (+0000) Subject: * config/ltmain.m4sh (func_mode_link): $dlsymsobj is really X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=595eeef480edc91a4a87a3704b0b7791daf90b61;p=thirdparty%2Flibtool.git * config/ltmain.m4sh (func_mode_link): $dlsymsobj is really $symfileobj, bug exposed only in the static preloading case (symfileobj is created, but not linked into output). --- diff --git a/ChangeLog b/ChangeLog index 9e1c0df3d..77bb3faa4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2004-11-28 Ralf Wildenhues + * config/ltmain.m4sh (func_mode_link): $dlsymsobj is really + $symfileobj, bug exposed only in the static preloading case + (symfileobj is created, but not linked into output). + * tests/demo-relink.test, tests/depdemo-relink.test: SKIP, don't FAIL if no shared libs available in demo/. Do not try to access nonexistent files. diff --git a/config/ltmain.m4sh b/config/ltmain.m4sh index 8bd17d24b..5d295ec68 100644 --- a/config/ltmain.m4sh +++ b/config/ltmain.m4sh @@ -6182,7 +6182,7 @@ fi\ build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" - if test "$preload" = yes && test -f "$dlsymsobj"; then + if test "$preload" = yes && test -f "$symfileobj"; then oldobjs="$oldobjs $symfileobj" fi fi