diff options
author | Roland McGrath <roland@gnu.org> | 1995-11-18 10:00:22 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-11-18 10:00:22 +0000 |
commit | a5a81fecc7194d050066265a15b1ba8bc3abc627 (patch) | |
tree | e4e3c1160fd41254b48678f71ece829b19dfb3dd /sysdeps/generic/Makefile | |
parent | 4cb202902d23b3c487016e516c70640c774b90d8 (diff) | |
download | glibc-a5a81fecc7194d050066265a15b1ba8bc3abc627.tar.gz glibc-a5a81fecc7194d050066265a15b1ba8bc3abc627.tar.xz glibc-a5a81fecc7194d050066265a15b1ba8bc3abc627.zip |
Fri Nov 17 17:57:00 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> cvs/libc-951119 cvs/libc-951118
* sysdeps/generic/Makefile (make_siglist): Add missing backslash. * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start_cleanup): New function. * hurd/hurdfault.c: Replace __libc_fatal calls with assert_perror. (_hurdsig_fault_init): Remove #if 0 from setting exception port. Insert send right for SIGEXC before thread_set_special_port. * hurd/hurdsig.c: Replace __libc_fatal calls with assert_perror. (_hurdsig_init): Remove #if 0 from setting exception port. * sysdeps/mach/hurd/ptrace.c (ptrace: PTRACE_CONT): Use HURD_MSGPORT_RPC macro.
Diffstat (limited to 'sysdeps/generic/Makefile')
-rw-r--r-- | sysdeps/generic/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/generic/Makefile b/sysdeps/generic/Makefile index dc31a50fcd..9dfc82c928 100644 --- a/sysdeps/generic/Makefile +++ b/sysdeps/generic/Makefile @@ -52,7 +52,7 @@ $(objpfx)siglist.c: $(objpfx)make_siglist mv $@-tmp $@ $(objpfx)make_siglist: $(sysdep_dir)/generic/make_siglist.c - $(native-compile) + $(native-compile) \ -DSIGNUM_H=\"`cd $(dir $(firstword $(wildcard \ $(+sysdep_dirs:%=%/signum.h)))); pwd`/signum.h\" |