diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-09 18:07:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-09 18:07:36 +0000 |
commit | 8db3f39cea2f1b4ddc130cad7285967fb25afe0a (patch) | |
tree | d31e270625569b41fdd2a26099fac9086432ee44 | |
parent | ff1b55eb5e5129913d9fa3bd7f93029a97593142 (diff) |
Avoid forced -lpthread lnkage when threading is enabled
-rw-r--r-- | libc/misc/pthread/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/pthread/Makefile b/libc/misc/pthread/Makefile index 8409789bf..3146c7a9a 100644 --- a/libc/misc/pthread/Makefile +++ b/libc/misc/pthread/Makefile @@ -29,7 +29,7 @@ SYSDEPINC = -I$(PTDIR)sysdeps/unix/sysv/linux \ -I$(TOPDIR)libc/sysdeps/linux/$(TARGET_ARCH) CFLAGS += $(SYSDEPINC) -D_GNU_SOURCE -CSRC=no-tsd.c #weaks.c +CSRC=no-tsd.c weaks.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) |