summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-06-10 13:05:34 -0700
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2011-06-14 09:14:32 +0200
commitfc643f77a3abc8743620445f47b1bade9862d45a (patch)
tree6f6a86c04cab7c15c7da67d975db4c3c23c590cf
parent608e138586993d3c59c65c2958d9a98cf0d4d1eb (diff)
downloaduClibc-alpine-fc643f77a3abc8743620445f47b1bade9862d45a.tar.bz2
uClibc-alpine-fc643f77a3abc8743620445f47b1bade9862d45a.tar.xz
nptl/Makefile.in: Fix the build break caused by UCLIBC_CTOR_DTOR enabling
Extra / somehow does not match the target and complains that $(top_builddir)libpthread/nptl/sysdeps/pthread/crti.o has no rules to build Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r--libpthread/nptl/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/nptl/Makefile.in b/libpthread/nptl/Makefile.in
index 70616a1fe..92d72a6cb 100644
--- a/libpthread/nptl/Makefile.in
+++ b/libpthread/nptl/Makefile.in
@@ -64,8 +64,8 @@ endif
librt-so-y += $(librt_OBJS:.o=.oS) $(librt-pt-shared-only-routines-y:.o=.oS)
ifeq ($(UCLIBC_CTOR_DTOR),y)
-START_FILE-libpthread.so := $(top_builddir)/libpthread/nptl/sysdeps/pthread/crti.o
-END_FILE-libpthread.so := $(top_builddir)/libpthread/nptl/sysdeps/pthread/crtn.o
+START_FILE-libpthread.so := $(top_builddir)libpthread/nptl/sysdeps/pthread/crti.o
+END_FILE-libpthread.so := $(top_builddir)libpthread/nptl/sysdeps/pthread/crtn.o
LDFLAGS-libpthread.so += -nostartfiles
$(top_builddir)lib/libpthread.so: | $(START_FILE-libpthread.so) $(END_FILE-libpthread.so)
endif