mirror of git://sourceware.org/git/glibc.git
Update.
1998-03-06 11:48 Mark M._Kettenis <kettenis@hall.phys.uva.nl> * elf/rtld.c (process_dl_debug): Fix typo: "DL_DEBUG" -> "LD_DEBUG".
This commit is contained in:
parent
7c57c32dc1
commit
08b511e6b6
|
|
@ -1,3 +1,8 @@
|
||||||
|
1998-03-06 11:48 Mark M._Kettenis <kettenis@hall.phys.uva.nl>
|
||||||
|
|
||||||
|
* elf/rtld.c (process_dl_debug): Fix typo: "DL_DEBUG" ->
|
||||||
|
"LD_DEBUG".
|
||||||
|
|
||||||
1998-03-05 Ulrich Drepper <drepper@cygnus.com>
|
1998-03-05 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* posix/Makefile (tests): Add wordexp-test.
|
* posix/Makefile (tests): Add wordexp-test.
|
||||||
|
|
|
||||||
|
|
@ -806,6 +806,7 @@ of this helper program; chances are you did not intend to run this program.\n",
|
||||||
|
|
||||||
_exit (0);
|
_exit (0);
|
||||||
}
|
}
|
||||||
|
_dl_sysdep_message("start reloc\n", NULL);
|
||||||
|
|
||||||
{
|
{
|
||||||
/* Now we have all the objects loaded. Relocate them all except for
|
/* Now we have all the objects loaded. Relocate them all except for
|
||||||
|
|
@ -843,7 +844,7 @@ of this helper program; chances are you did not intend to run this program.\n",
|
||||||
Re-relocate ourselves with user-controlled symbol definitions. */
|
Re-relocate ourselves with user-controlled symbol definitions. */
|
||||||
_dl_relocate_object (&_dl_rtld_map, &_dl_default_scope[2], 0);
|
_dl_relocate_object (&_dl_rtld_map, &_dl_default_scope[2], 0);
|
||||||
}
|
}
|
||||||
|
_dl_sysdep_message("end reloc\n", NULL);
|
||||||
{
|
{
|
||||||
/* Initialize _r_debug. */
|
/* Initialize _r_debug. */
|
||||||
struct r_debug *r = _dl_debug_initialize (_dl_rtld_map.l_addr);
|
struct r_debug *r = _dl_debug_initialize (_dl_rtld_map.l_addr);
|
||||||
|
|
@ -930,7 +931,7 @@ process_dl_debug (char *dl_debug)
|
||||||
&& (issep (dl_debug[4]) || dl_debug[4] == '\0'))
|
&& (issep (dl_debug[4]) || dl_debug[4] == '\0'))
|
||||||
{
|
{
|
||||||
_dl_sysdep_message ("\
|
_dl_sysdep_message ("\
|
||||||
Valid options for the DL_DEBUG environment variable are:\n\
|
Valid options for the LD_DEBUG environment variable are:\n\
|
||||||
\n\
|
\n\
|
||||||
help display this help message and exit
|
help display this help message and exit
|
||||||
libs display library search paths\n", NULL);
|
libs display library search paths\n", NULL);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue