diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-09-14 16:02:06 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-09-14 16:02:06 +0200 |
commit | a0a9b6e376b75c07b4f65f270f008ce035bbf536 (patch) | |
tree | 631d70c64f836515b95b6c204fa73bb396efa284 /sysdeps/unix/sysv | |
parent | 02bbfb414f367c73196e6f23fa7435a08c92449f (diff) | |
download | glibc-a0a9b6e376b75c07b4f65f270f008ce035bbf536.tar.gz |
Remove the ptw-% patterns
Nothing depends on the PTW macro anymore, so the mechanism to define
PTW for recompliations of libc routines is no longer needed. The
source files are still recompiled for the nptl directory, just without
the “ptw-” prefix.
(Reducing the number of pattern rules in sysd-rules is critical for
improving make performance.)
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/Makefile b/sysdeps/unix/sysv/linux/alpha/Makefile index 3b523b70cf..1e858ce727 100644 --- a/sysdeps/unix/sysv/linux/alpha/Makefile +++ b/sysdeps/unix/sysv/linux/alpha/Makefile @@ -39,6 +39,6 @@ endif # math ifeq ($(subdir),nptl) # pull in __syscall_error routine, __sigprocmask, __syscall_rt_sigaction -libpthread-routines += ptw-sysdep ptw-sigprocmask ptw-rt_sigaction -libpthread-shared-only-routines += ptw-sysdep ptw-sigprocmask ptw-rt_sigaction +libpthread-routines += sysdep sigprocmask rt_sigaction +libpthread-shared-only-routines += sysdep sigprocmask rt_sigaction endif |