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>
Thu Aug 18 16:05:48 2011 +0200 (2011-08-18)
changeset 2612 a52574521bea
permissions -rw-r--r--
debug/gdb: update GDB revisions

Update GDB with the latest available revisions.

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