diff options
author | Zack Weinberg <zackw@panix.com> | 2017-05-21 09:50:26 -0400 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2017-05-21 09:50:26 -0400 |
commit | 2cdfa9e84886535cf7586bc4449850cdce427c64 (patch) | |
tree | 7f14e91073bbb934e27db4ccd1fede7ba7ab8d6d /signal | |
parent | a992f506ff7162da2afa5a6151cc6f15949ceef4 (diff) | |
download | glibc-2cdfa9e84886535cf7586bc4449850cdce427c64.zip glibc-2cdfa9e84886535cf7586bc4449850cdce427c64.tar.gz glibc-2cdfa9e84886535cf7586bc4449850cdce427c64.tar.bz2 |
Add one more header to be installed, missed from previous patch.
* signal/Makefile (headers): Add bits/types/sigval_t.h.
Diffstat (limited to 'signal')
-rw-r--r-- | signal/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/signal/Makefile b/signal/Makefile index de92558..9ce8232 100644 --- a/signal/Makefile +++ b/signal/Makefile @@ -28,8 +28,8 @@ headers := signal.h sys/signal.h \ bits/sigstack.h bits/sigthread.h bits/ss_flags.h \ bits/types/__sigset_t.h bits/types/sig_atomic_t.h \ bits/types/sigevent_t.h bits/types/siginfo_t.h \ - bits/types/sigset_t.h bits/types/stack_t.h \ - bits/types/struct_sigstack.h + bits/types/sigset_t.h bits/types/sigval_t.h \ + bits/types/stack_t.h bits/types/struct_sigstack.h routines := signal raise killpg \ sigaction sigprocmask kill \ |