diff options
author | Arjun Shankar <arjun@redhat.com> | 2024-10-25 09:33:45 +0200 |
---|---|---|
committer | Arjun Shankar <arjun@redhat.com> | 2024-10-25 13:43:46 +0200 |
commit | 6a290b2895b77be839fcb7c44a6a9879560097ad (patch) | |
tree | a82ce20765f44dff1429d0fccf2447240ebfd13b /libio/Makefile | |
parent | c5dd659f22058bf9b371ab1cba07631f1206c674 (diff) | |
download | glibc-6a290b2895b77be839fcb7c44a6a9879560097ad.zip glibc-6a290b2895b77be839fcb7c44a6a9879560097ad.tar.gz glibc-6a290b2895b77be839fcb7c44a6a9879560097ad.tar.bz2 |
libio: Correctly link tst-popen-fork against libpthread
tst-popen-fork failed to build for Hurd due to not being linked with
libpthread. This commit fixes that.
Tested with build-many-glibcs.py for i686-gnu.
Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'libio/Makefile')
-rw-r--r-- | libio/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libio/Makefile b/libio/Makefile index 018c26d..cd5a3af 100644 --- a/libio/Makefile +++ b/libio/Makefile @@ -144,6 +144,8 @@ tests = \ tst_wscanf \ # tests +$(objpfx)tst-popen-fork: $(shared-thread-library) + tests-internal = tst-vtables tst-vtables-interposed ifeq (yes,$(build-shared)) |