patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch
author danielrubiob@gmail.com
Tue Feb 11 21:34:48 2014 +0100 (2014-02-11)
changeset 3285 a8cb9039fade
permissions -rw-r--r--
complibs/cloog: bump version

Signed-off-by: Daniel Rubio Bonilla <danielrubiob@gmail.com>
[yann.morin.1998@free.fr: re-order versions]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cody P Schafer <dev@codyps.com>
Message-Id: <c2de3964cd6d5e4173cc.1391984023@uemo>
Patchwork-Id: 318637
     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