patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch
author "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Mon Apr 16 15:25:36 2012 +0200 (2012-04-16)
changeset 2941 13e40098fffc
permissions -rw-r--r--
cc/gcc: update Linaro GCC revisions to 2012.04

Update Linaro GCC with the latest available revisions.

The 4.7 revision is also released, but the infrastructure is not yet ready for
it in CT-NG.

Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
     1 commit fc643f77a3abc8743620445f47b1bade9862d45a
     2 Author: Khem Raj <raj.khem@gmail.com>
     3 Date:   Fri Jun 10 13:05:34 2011 -0700
     4 
     5     nptl/Makefile.in: Fix the build break caused by UCLIBC_CTOR_DTOR enabling
     6     
     7     Extra / somehow does not match the target and complains that
     8     $(top_builddir)libpthread/nptl/sysdeps/pthread/crti.o has no rules to
     9     build
    10     
    11     Signed-off-by: Khem Raj <raj.khem@gmail.com>
    12     Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
    13 
    14 diff --git a/libpthread/nptl/Makefile.in b/libpthread/nptl/Makefile.in
    15 index 70616a1..92d72a6 100644
    16 --- a/libpthread/nptl/Makefile.in
    17 +++ b/libpthread/nptl/Makefile.in
    18 @@ -64,8 +64,8 @@ endif
    19  librt-so-y += $(librt_OBJS:.o=.oS) $(librt-pt-shared-only-routines-y:.o=.oS)
    20  
    21  ifeq ($(UCLIBC_CTOR_DTOR),y)
    22 -START_FILE-libpthread.so := $(top_builddir)/libpthread/nptl/sysdeps/pthread/crti.o
    23 -END_FILE-libpthread.so := $(top_builddir)/libpthread/nptl/sysdeps/pthread/crtn.o
    24 +START_FILE-libpthread.so := $(top_builddir)libpthread/nptl/sysdeps/pthread/crti.o
    25 +END_FILE-libpthread.so := $(top_builddir)libpthread/nptl/sysdeps/pthread/crtn.o
    26  LDFLAGS-libpthread.so += -nostartfiles
    27  $(top_builddir)lib/libpthread.so: | $(START_FILE-libpthread.so) $(END_FILE-libpthread.so)
    28  endif