diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-21 08:25:15 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-21 08:25:15 +0200 |
commit | a2014d311b2b2a7d8fcf2f502493404d7ec2601c (patch) | |
tree | 2fb5e9df8374d6dbfe3655014961b0a6f508672c /rt | |
parent | f6b6e148695aed6bfb8211953981a87ffe17343f (diff) | |
download | glibc-a2014d311b2b2a7d8fcf2f502493404d7ec2601c.tar glibc-a2014d311b2b2a7d8fcf2f502493404d7ec2601c.tar.gz glibc-a2014d311b2b2a7d8fcf2f502493404d7ec2601c.tar.bz2 glibc-a2014d311b2b2a7d8fcf2f502493404d7ec2601c.zip |
Fix librt-routines-var issues for !PTHREAD_IN_LIBC
The variable name was incorrect, and the existing librt-routines
variable needs to be augmented (not assigned) in rt/Makefile.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'rt')
-rw-r--r-- | rt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/Makefile b/rt/Makefile index b0d887202d..47bc594dee 100644 --- a/rt/Makefile +++ b/rt/Makefile @@ -57,7 +57,7 @@ librt-routines = \ timer_gettime \ timer_settime \ -$(librt-routines-var) = \ +$(librt-routines-var) += \ tests := tst-shm tst-timer tst-timer2 \ tst-aio tst-aio64 tst-aio2 tst-aio3 tst-aio4 tst-aio5 tst-aio6 \ |