diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-09 00:01:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-09 00:01:13 +0000 |
commit | b4debac9ccfc9955c638f48299357d9576ae8905 (patch) | |
tree | 937506cb280c5821f61f908e89f6f113baf7ea73 /elf | |
parent | 120b4c4986b4af867843d0b1b24bf5c06f9d10e4 (diff) | |
download | glibc-b4debac9ccfc9955c638f48299357d9576ae8905.tar glibc-b4debac9ccfc9955c638f48299357d9576ae8905.tar.gz glibc-b4debac9ccfc9955c638f48299357d9576ae8905.tar.bz2 glibc-b4debac9ccfc9955c638f48299357d9576ae8905.zip |
Update.
* elf/dl-support.c (non_dynamic_init): Pass return value of getenv
("LD_LIBRARY_PATH") to _dl_init_paths.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-support.c b/elf/dl-support.c index 9d28d2b640..29a16d2d5c 100644 --- a/elf/dl-support.c +++ b/elf/dl-support.c @@ -59,7 +59,7 @@ non_dynamic_init (void) /* Initialize the data structures for the search paths for shared objects. */ - _dl_init_paths (NULL); + _dl_init_paths (getenv ("LD_LIBRARY_PATH")); #ifdef DL_PLATFORM_INIT DL_PLATFORM_INIT; |