diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2009-09-21 18:25:22 -0700 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-09-21 18:25:22 -0700 |
commit | e2784760e51ec0de62bbee61d27a85147460ece0 (patch) | |
tree | 0d1541dc5f16424d5a097929e0aaaa8c762a1056 /librt | |
parent | a894902293392cdae3a614ae3ff065ca3a7b9f75 (diff) | |
download | uClibc-alpine-e2784760e51ec0de62bbee61d27a85147460ece0.tar.bz2 uClibc-alpine-e2784760e51ec0de62bbee61d27a85147460ece0.tar.xz |
not-cancel: use *_not_cancel variants directly
add a no threads version of not-cancel.h to fallback on
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'librt')
-rw-r--r-- | librt/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librt/Makefile.in b/librt/Makefile.in index 1596d3a6f..ea1d03eb8 100644 --- a/librt/Makefile.in +++ b/librt/Makefile.in @@ -30,7 +30,7 @@ librt_CSRC := $(filter-out mq_notify.c timer_create.c timer_delete.c \ $(notdir $(wildcard $(librt_DIR)/*.c))) librt_SSRC := $(wildcard $(librt_DIR)/*.S) librt_OBJ := $(patsubst %.c,$(librt_OUT)/%.o,$(librt_CSRC)) -librt_OBJ += $(patsubst %.S,$(librt_OUT)/%.o,$(librt_SSRC)) +librt_OBJ += $(patsubst $(librt_DIR)/%.S,$(librt_OUT)/%.o,$(librt_SSRC)) else librt_SRC := $(filter-out clock_nanosleep.c clock_getcpuclockid.c clock_gettime.c, \ $(notdir $(wildcard $(librt_DIR)/*.c))) |