mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-05 19:35:52 +03:00
Update.
* elf/dl-load.c (_dl_map_object): Don't ignore RPATHs of loader == NULL.
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
2000-05-26 Ulrich Drepper <drepper@redhat.com>
|
2000-05-26 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/dl-load.c (_dl_map_object): Don't ignore RPATHs of loader ==
|
||||||
|
NULL.
|
||||||
|
|
||||||
* posix/tst-preadwrite.c: Allow parallel execution of
|
* posix/tst-preadwrite.c: Allow parallel execution of
|
||||||
tst-preadwrite and tst-preadwrite64.
|
tst-preadwrite and tst-preadwrite64.
|
||||||
|
|
||||||
|
@@ -1346,7 +1346,7 @@ _dl_map_object (struct link_map *loader, const char *name, int preloaded,
|
|||||||
|
|
||||||
/* When the object has the RUNPATH information we don't use any
|
/* When the object has the RUNPATH information we don't use any
|
||||||
RPATHs. */
|
RPATHs. */
|
||||||
if (loader != NULL && loader->l_info[DT_RUNPATH] == NULL)
|
if (loader == NULL || loader->l_info[DT_RUNPATH] == NULL)
|
||||||
{
|
{
|
||||||
/* First try the DT_RPATH of the dependent object that caused NAME
|
/* First try the DT_RPATH of the dependent object that caused NAME
|
||||||
to be loaded. Then that object's dependent, and on up. */
|
to be loaded. Then that object's dependent, and on up. */
|
||||||
|
Reference in New Issue
Block a user