patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch
author Titus von Boxberg <titus@v9g.de>
Tue Nov 06 17:02:06 2012 +0100 (2012-11-06)
changeset 3103 a8bf927f6e37
permissions -rw-r--r--
Makefile.in: Use only standard options compatible with BSD install

Don't use options specific to FSF's coreutils install.

Signed-off-by: Titus von Boxberg <titus@v9g.de>
Message-Id: <51587db99510a9ec08f8.1352226968@tschetwerikow.boxberg.lan>
Patchwork-Id: 197532
     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