aboutsummaryrefslogtreecommitdiff
path: root/patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling....
diff options
context:
space:
mode:
authorBryan Hundven <bryanhundven@gmail.com>2015-11-09 22:47:17 -0800
committerBryan Hundven <bryanhundven@gmail.com>2015-11-11 08:27:33 -0800
commit930fa77076874655179341433b4f8066deefb0b8 (patch)
treea4f0045b6706d203eb89ee22654b56d0f7448565 /patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch
parent83403825ee654bcf214a9329d429bcf9603acad5 (diff)
downloadcrosstool-ng-930fa77076874655179341433b4f8066deefb0b8.tar.gz
crosstool-ng-930fa77076874655179341433b4f8066deefb0b8.tar.bz2
crosstool-ng-930fa77076874655179341433b4f8066deefb0b8.zip
uClibc: Reduce supported versions
This commit reduces the number of supported versions to: * 0.9.33.2 * custom location Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch')
-rw-r--r--patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch b/patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch
deleted file mode 100644
index f8e8411d..00000000
--- a/patches/uClibc/0.9.32/110-nptl-Makefile.in-Fix-the-build-break-caused-by-UCLIBC_CTOR_DTOR-enabling.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-commit fc643f77a3abc8743620445f47b1bade9862d45a
-Author: Khem Raj <raj.khem@gmail.com>
-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 <raj.khem@gmail.com>
- Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-
-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