aboutsummaryrefslogtreecommitdiff
path: root/meta-linaro-toolchain
diff options
context:
space:
mode:
authorFathi Boudra <fathi.boudra@linaro.org>2014-12-01 15:41:58 +0200
committerFathi Boudra <fathi.boudra@linaro.org>2014-12-01 15:41:58 +0200
commit8e3d2af3c2b436cd99eb3b9f88915269161e86c8 (patch)
treec28143070e4b915d0daddffcac766aaf4e47b6e3 /meta-linaro-toolchain
parent65ff15ec4a566dedff8bc2211ac3c3ff81e82259 (diff)
glibc: remove cross-localedef-native recipe
It causes build failure since it contains reference to glibc-2.19. It isn't required anyway as we upgraded to Linaro glibc 2.20. Change-Id: Ic9f1e9dc048d6de396cd535fdfa8ca36691359cf Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Diffstat (limited to 'meta-linaro-toolchain')
-rw-r--r--meta-linaro-toolchain/recipes-core/glibc/cross-localedef-native-linaro-2.20/fix_for_centos_5.8.patch18
-rw-r--r--meta-linaro-toolchain/recipes-core/glibc/cross-localedef-native_linaro-2.20.bb48
2 files changed, 0 insertions, 66 deletions
diff --git a/meta-linaro-toolchain/recipes-core/glibc/cross-localedef-native-linaro-2.20/fix_for_centos_5.8.patch b/meta-linaro-toolchain/recipes-core/glibc/cross-localedef-native-linaro-2.20/fix_for_centos_5.8.patch
deleted file mode 100644
index 7618c995..00000000
--- a/meta-linaro-toolchain/recipes-core/glibc/cross-localedef-native-linaro-2.20/fix_for_centos_5.8.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Upstream-Status: Inappropriate [other]
-
-This is a hack to fix building the locale bits on an older
-CentOs 5.X machine
-
-Index: eglibc-2_16/libc/locale/programs/config.h
-===================================================================
---- eglibc-2_16.orig/libc/locale/programs/config.h
-+++ eglibc-2_16/libc/locale/programs/config.h
-@@ -19,6 +19,8 @@
- #ifndef _LD_CONFIG_H
- #define _LD_CONFIG_H 1
-
-+#define DUMMY_LOCALE_T
-+
- /* Use the internal textdomain used for libc messages. */
- #define PACKAGE _libc_intl_domainname
- #ifndef VERSION
diff --git a/meta-linaro-toolchain/recipes-core/glibc/cross-localedef-native_linaro-2.20.bb b/meta-linaro-toolchain/recipes-core/glibc/cross-localedef-native_linaro-2.20.bb
deleted file mode 100644
index 436e7941..00000000
--- a/meta-linaro-toolchain/recipes-core/glibc/cross-localedef-native_linaro-2.20.bb
+++ /dev/null
@@ -1,48 +0,0 @@
-SUMMARY = "Cross locale generation tool for glibc"
-HOMEPAGE = "http://www.glibc.org/home"
-SECTION = "libs"
-LICENSE = "LGPL-2.1"
-
-LIC_DIR = "${WORKDIR}/glibc-2.19/libc"
-LIC_FILES_CHKSUM = "file://${LIC_DIR}/LICENSES;md5=e9a558e243b36d3209f380deb394b213 \
- file://${LIC_DIR}/COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
- file://${LIC_DIR}/posix/rxspencer/COPYRIGHT;md5=dc5485bb394a13b2332ec1c785f5d83a \
- file://${LIC_DIR}/COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
-
-
-inherit native
-inherit autotools
-
-FILESEXTRAPATHS =. "${FILE_DIRNAME}/${P}:"
-
-SRC_URI = "http://downloads.yoctoproject.org/releases/glibc/glibc-2.19-svnr25243.tar.bz2 \
- file://fix_for_centos_5.8.patch;patchdir=.. \
- "
-SRC_URI[md5sum] = "197836c2ba42fb146e971222647198dd"
-SRC_URI[sha256sum] = "baaa030531fc308f7820c46acdf8e1b2f8e3c1f40bcd28b6e440d1c95d170d4c"
-
-S = "${WORKDIR}/glibc-2.19/localedef"
-
-do_unpack_append() {
- bb.build.exec_func('do_move_ports', d)
-}
-
-do_move_ports() {
- if test -d ${WORKDIR}/glibc-2.19/ports ; then
- rm -rf ${WORKDIR}/libc/ports
- mv ${WORKDIR}/glibc-2.19/ports ${WORKDIR}/libc/
- fi
-}
-
-EXTRA_OECONF = "--with-glibc=${WORKDIR}/glibc-2.19/libc"
-CFLAGS += "-DNOT_IN_libc=1"
-
-do_configure () {
- ${S}/configure ${EXTRA_OECONF}
-}
-
-
-do_install() {
- install -d ${D}${bindir}
- install -m 0755 ${B}/localedef ${D}${bindir}/cross-localedef
-}