diff options
author | Roland McGrath <roland@gnu.org> | 1995-08-22 20:48:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-08-22 20:48:46 +0000 |
commit | 86fe2915bbc0e52595224906b1e1dfe01bb153e0 (patch) | |
tree | 98b4f0f6dea70750bbd5bc8160586cb2e2c23181 | |
parent | a4bb25890d262dd143b0030099ce084a4b21acd0 (diff) | |
download | glibc-86fe2915bbc0e52595224906b1e1dfe01bb153e0.tar.gz glibc-86fe2915bbc0e52595224906b1e1dfe01bb153e0.tar.xz glibc-86fe2915bbc0e52595224906b1e1dfe01bb153e0.zip |
Removed dep on hurd/signal.h for RPC stub objects.
-rw-r--r-- | hurd/Makefile | 3 | ||||
-rw-r--r-- | sysdeps/i386/dl-machine.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/hurd/Makefile b/hurd/Makefile index 2828a80024..805f55bc90 100644 --- a/hurd/Makefile +++ b/hurd/Makefile @@ -92,9 +92,6 @@ include ../Rules # _hurd_intr_rpc_mach_msg. user-MIGFLAGS += -imacros intr-rpc.defs -$(foreach if,$(user-interfaces),$($(if)-calls:%=$(objpfx)RPC_%.o))): \ - hurd/signal.h - $(objpfx)fault%.c $(objpfx)fault%.h: $(mach-srcdir)/mach/%.defs $(MIG) $(MIGFLAGS) -prefix _hurdsig_fault_ \ -server $(@:.h=.c) -sheader $(@:.c=.h) \ diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index 5ef56a7088..57637a936f 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -108,6 +108,8 @@ elf_machine_rel (struct link_map *map, case R_386_PC32: *reloc_addr = sym_value - (Elf32_Addr) reloc_addr; break; + case R_386_NONE: /* Alright, Wilbur. */ + break; default: assert (! "unexpected dynamic reloc type"); break; |