diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-03 06:27:43 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-03 06:27:43 +0000 |
commit | c22b52fa115b51b843c4bd5f1fdfec680693cf73 (patch) | |
tree | b32a3008cce27aab9d14b7713cf9696c75e80df9 /nptl/Makefile | |
parent | a3a238a978a7e5bb6a543b808e11442a102ee74c (diff) | |
download | glibc-c22b52fa115b51b843c4bd5f1fdfec680693cf73.tar glibc-c22b52fa115b51b843c4bd5f1fdfec680693cf73.tar.gz glibc-c22b52fa115b51b843c4bd5f1fdfec680693cf73.tar.bz2 glibc-c22b52fa115b51b843c4bd5f1fdfec680693cf73.zip |
Update.
* Makefile (tests): Add tst-locale1. If buid-static is yes link
statically.
* tst-locale1.c: New file.
Diffstat (limited to 'nptl/Makefile')
-rw-r--r-- | nptl/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/nptl/Makefile b/nptl/Makefile index 58e1b3d794..5ae8896131 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -132,7 +132,8 @@ tests = tst-mutex1 tst-mutex2 tst-mutex3 tst-mutex4 tst-mutex5 tst-mutex6 \ tst-exec1 tst-exec2 tst-exec3 \ tst-exit1 \ tst-stack1 \ - tst-unload + tst-unload \ + tst-locale1 LDFLAGS-pthread.so = -Wl,--enable-new-dtags,-z,nodelete,-z,initfirst @@ -155,6 +156,10 @@ endif include ../Rules +ifeq ($(build-static),yes) +tests-static += tst-locale1 +endif + # What we install as libc.so for programs to link against is in fact a # link script. It contains references for the various libraries we need. # The libc.so object is not complete since some functions are only defined |