diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 16:01:53 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 16:01:53 +0000 |
commit | 4d41cd56e9e8a5797f8182046dad7c002faa52d9 (patch) | |
tree | 4fdec92c159aca459cd27e7c1a9ace3d7eb8964a /libpthread | |
parent | b3db5549d2d779ac9a1c1204939d66255e705f09 (diff) |
Remove unneeded if clause. We won't be in this directory unless we
have enabled threads.
Diffstat (limited to 'libpthread')
-rw-r--r-- | libpthread/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libpthread/Makefile b/libpthread/Makefile index c16485f66..1218b5cc8 100644 --- a/libpthread/Makefile +++ b/libpthread/Makefile @@ -28,13 +28,10 @@ LIBTHREAD_DB=libthread_db.a LIBTHREAD_DB_SHARED=libthread_db.so LIBTHREAD_DB_SHARED_FULLNAME=libthread_db-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so -DIRS= -ifeq ($(strip $(UCLIBC_HAS_THREADS)),y) - DIRS+=linuxthreads +DIRS=linuxthreads ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y) DIRS+=linuxthreads_db endif -endif ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y) SHARED_START_FILES = $(TOPDIR)lib/crti.o $(LIBGCC_DIR)crtbeginS.o |