aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/uClibc/patches-0.9.33.2/981-fix_setting_arch_native_bit.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-11-02 18:12:16 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-11-02 18:12:16 +0000
commit014194de605990c6bdce52e03ee3dc1df13c45e8 (patch)
treec65577c3a956dad1d4d1b05e6d62c2f331218e80 /toolchain/uClibc/patches-0.9.33.2/981-fix_setting_arch_native_bit.patch
parent02df774b52e4a0c0b9a8395e55263b80eb8f5f93 (diff)
downloadupstream-014194de605990c6bdce52e03ee3dc1df13c45e8.tar.gz
upstream-014194de605990c6bdce52e03ee3dc1df13c45e8.tar.bz2
upstream-014194de605990c6bdce52e03ee3dc1df13c45e8.zip
uclibc: remove version 0.9.33
Latest uClibc-ng is now the only supported option Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 47357
Diffstat (limited to 'toolchain/uClibc/patches-0.9.33.2/981-fix_setting_arch_native_bit.patch')
-rw-r--r--toolchain/uClibc/patches-0.9.33.2/981-fix_setting_arch_native_bit.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/toolchain/uClibc/patches-0.9.33.2/981-fix_setting_arch_native_bit.patch b/toolchain/uClibc/patches-0.9.33.2/981-fix_setting_arch_native_bit.patch
deleted file mode 100644
index 4c7dd46891..0000000000
--- a/toolchain/uClibc/patches-0.9.33.2/981-fix_setting_arch_native_bit.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 7e509aae23665b9a79f6c9b4c24d1d8a55bd3582 Mon Sep 17 00:00:00 2001
-From: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Date: Wed, 24 Jul 2013 15:30:35 +0000
-Subject: Rules.mak: Fix setting arch native bit
-
-fix breakage from 603af30d
-
-Removing the whitespace from findstring for 64 bit architectures has
-bad consequences since powerpc would be a match in powerpc64 and sparc
-would also be a match in sparc64.
-That doesn't make them 64 bits in reality causing general breakage.
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
-Reviewed-by: Markos Chandras <markos.chandras@imgtec.com>
-Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
----
-
---- a/Rules.mak
-+++ b/Rules.mak
-@@ -121,7 +121,7 @@ UBACKTRACE_DSO := libubacktrace.so.$(ABI
-
- UCLIBC_LDSO_NAME := ld-uClibc
- ARCH_NATIVE_BIT := 32
--ifneq ($(findstring $(TARGET_ARCH),hppa64 ia64 powerpc64 s390x sparc64 x86_64),)
-+ifneq ($(findstring $(TARGET_ARCH) , hppa64 ia64 powerpc64 s390x sparc64 x86_64 ),)
- UCLIBC_LDSO_NAME := ld64-uClibc
- ARCH_NATIVE_BIT := 64
- else