diff options
author | Jeff Law <law@redhat.com> | 1996-02-21 21:27:08 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1996-02-21 21:27:08 +0000 |
commit | 13f6c7eac10661702eed87dd6949b67a08183df5 (patch) | |
tree | d5045fa903929f2a39b032fe51d4eab7877fe6ab | |
parent | ea74d97907018c42b514cc3a954ecc9f2ecb6457 (diff) | |
download | gdb-13f6c7eac10661702eed87dd6949b67a08183df5.zip gdb-13f6c7eac10661702eed87dd6949b67a08183df5.tar.gz gdb-13f6c7eac10661702eed87dd6949b67a08183df5.tar.bz2 |
* solib.c (solib_create_inferior_hook): Fix thinko.
Don't screw sunos4 with 7763 fixes..
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/solib.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bd62a24..5056421 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Wed Feb 21 14:24:04 1996 Jeffrey A Law (law@cygnus.com) + + * solib.c (solib_create_inferior_hook): Fix thinko. + Tue Feb 20 23:59:19 1996 Jeffrey A Law (law@cygnus.com) * solib.c (solib_break_names): Define for Solaris and Linux. diff --git a/gdb/solib.c b/gdb/solib.c index 6247b8a..cc60196 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -1568,7 +1568,7 @@ solib_create_inferior_hook() return; } -#ifndef BKPT_AT_SYMBOL +#ifndef SVR4_SHARED_LIBS /* Only SunOS needs the loop below, other systems should be using the special shared library breakpoints and the shared library breakpoint service routine. |