diff -r 000000000000 -r a52574521bea patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch Thu Aug 18 16:05:48 2011 +0200 @@ -0,0 +1,28 @@ +commit fc643f77a3abc8743620445f47b1bade9862d45a +Author: Khem Raj +Date: Fri Jun 10 13:05:34 2011 -0700 + + 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 + Signed-off-by: Bernhard Reutner-Fischer + +diff --git a/libpthread/nptl/Makefile.in b/libpthread/nptl/Makefile.in +index 70616a1..92d72a6 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