diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-05-20 18:13:33 -0700 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-05-20 18:13:33 -0700 |
commit | cdf998b99e1f18e5aa549dc46a1f9ef55d934fff (patch) | |
tree | 3d269285809e8080fc9218aaaf192c81954043d1 /libc/sysdeps/linux/sparc | |
parent | a0d6ffc6c232fa4c5b7c99bf82ed7646814f1236 (diff) | |
download | uClibc-alpine-cdf998b99e1f18e5aa549dc46a1f9ef55d934fff.tar.bz2 uClibc-alpine-cdf998b99e1f18e5aa549dc46a1f9ef55d934fff.tar.xz |
Adjust build of sigaction for the nptl case
This brings sparc inline with other archs with nptl support
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/sysdeps/linux/sparc')
-rw-r--r-- | libc/sysdeps/linux/sparc/Makefile.arch | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sparc/Makefile.arch b/libc/sysdeps/linux/sparc/Makefile.arch index 37cee7a39..5566f30a9 100644 --- a/libc/sysdeps/linux/sparc/Makefile.arch +++ b/libc/sysdeps/linux/sparc/Makefile.arch @@ -5,7 +5,11 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CSRC := brk.c __syscall_error.c qp_ops.c sigaction.c +CSRC := brk.c __syscall_error.c qp_ops.c + +ifneq ($(UCLIBC_HAS_THREADS_NATIVE),y) +CSRC += sigaction.c +endif SSRC := \ __longjmp.S setjmp.S bsd-setjmp.S bsd-_setjmp.S \ |