summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glibc/cross-localedef-native_2.32.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-02-04 21:41:41 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-05 12:00:54 +0000
commit7b8df042d0c175388d6230f008b1c83d5c5cd5da (patch)
treeeffa543d93952e198887369a11b9667d94599349 /meta/recipes-core/glibc/cross-localedef-native_2.32.bb
parent77d9b5f02aec991540926fe144076e122c17f64d (diff)
downloadpoky-7b8df042d0c175388d6230f008b1c83d5c5cd5da.tar.gz
glibc: Upgrade to 2.33
Drop backported patches (From OE-Core rev: aa87638cf4f2bef66df92f961c7814f6b482fd3d) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc/cross-localedef-native_2.32.bb')
-rw-r--r--meta/recipes-core/glibc/cross-localedef-native_2.32.bb50
1 files changed, 0 insertions, 50 deletions
diff --git a/meta/recipes-core/glibc/cross-localedef-native_2.32.bb b/meta/recipes-core/glibc/cross-localedef-native_2.32.bb
deleted file mode 100644
index ec59c6ba10..0000000000
--- a/meta/recipes-core/glibc/cross-localedef-native_2.32.bb
+++ /dev/null
@@ -1,50 +0,0 @@
1SUMMARY = "Cross locale generation tool for glibc"
2HOMEPAGE = "http://www.gnu.org/software/libc/libc.html"
3SECTION = "libs"
4LICENSE = "LGPL-2.1"
5
6LIC_FILES_CHKSUM = "file://LICENSES;md5=1541fd8f5e8f1579512bf05f533371ba \
7 file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
8 file://posix/rxspencer/COPYRIGHT;md5=dc5485bb394a13b2332ec1c785f5d83a \
9 file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
10
11require glibc-version.inc
12
13# Tell autotools that we're working in the localedef directory
14#
15AUTOTOOLS_SCRIPT_PATH = "${S}/localedef"
16
17inherit autotools
18inherit native
19
20FILESEXTRAPATHS =. "${FILE_DIRNAME}/${PN}:${FILE_DIRNAME}/glibc:"
21
22SRC_URI = "${GLIBC_GIT_URI};branch=${SRCBRANCH};name=glibc \
23 git://github.com/kraj/localedef;branch=master;name=localedef;destsuffix=git/localedef \
24 \
25 file://0001-localedef-Add-hardlink-resolver-from-util-linux.patch \
26 file://0002-localedef-fix-ups-hardlink-to-make-it-compile.patch \
27 \
28 file://0016-timezone-re-written-tzselect-as-posix-sh.patch \
29 file://0017-Remove-bash-dependency-for-nscd-init-script.patch \
30 file://0018-eglibc-Cross-building-and-testing-instructions.patch \
31 file://0019-eglibc-Help-bootstrap-cross-toolchain.patch \
32 file://0020-eglibc-Resolve-__fpscr_values-on-SH4.patch \
33 file://0021-eglibc-Forward-port-cross-locale-generation-support.patch \
34 file://0022-Define-DUMMY_LOCALE_T-if-not-defined.patch \
35 file://0023-localedef-add-to-archive-uses-a-hard-coded-locale-pa.patch \
36"
37# Makes for a rather long rev (22 characters), but...
38#
39SRCREV_FORMAT = "glibc_localedef"
40
41S = "${WORKDIR}/git"
42
43EXTRA_OECONF = "--with-glibc=${S}"
44CFLAGS += "-fgnu89-inline -std=gnu99 -DIS_IN\(x\)='0'"
45
46do_install() {
47 install -d ${D}${bindir}
48 install -m 0755 ${B}/localedef ${D}${bindir}/cross-localedef
49 install -m 0755 ${B}/cross-localedef-hardlink ${D}${bindir}/cross-localedef-hardlink
50}