summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2015-03-18 02:05:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-16 22:40:53 +0100
commitcb7368c110553dcb972480abc4a59b975677f7df (patch)
tree2ffd1b35c59f320e2141bc3016ca1777ffa4d412 /meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch
parent0183d7c4067fdf171a4420477e965dca58f6d7d3 (diff)
downloadpoky-cb7368c110553dcb972480abc4a59b975677f7df.tar.gz
glibc: Upgrade 2.21 -> 2.22
- git'ify the OE patches - add_resource_h_to_wait_h.patch - dropped, we do not support that old perf anymore - mips-rld-map-check.patch - Dropped because binutils is fixed for it see https://sourceware.org/ml/binutils/2011-12/msg00112.html - initgroups_keys.patch - Folded into 0026-eglibc-Forward-port-eglibc-options-groups-support.patch Change-Id: Ib8e731b212f52b8ff12e2180babbc19970fb1ef1 (From OE-Core rev: 6ea08396dbb628140fd3289fc9fb19df97914326) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch')
-rw-r--r--meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch b/meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch
deleted file mode 100644
index ec480067a8..0000000000
--- a/meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1From 6207fb45553ee98f2f326883b7c21b76c8267343 Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Tue, 31 Mar 2015 02:31:25 -0700
4Subject: [PATCH] elf/Makefile: fix a typo
5
6Fixed a typo:
7name-target-directory -> make-target-directory
8
9There is no name-target-directory, it should be make-target-directory,
10this fixed the error:
11/bin/bash: /path/to/elf/runtime-linker.T: No such file or directory
12Makefile:361: recipe for target '/path/to/elf/runtime-linker.st' failed
13
14Upstream-Status: Pending
15
16Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
17---
18 elf/Makefile | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/elf/Makefile b/elf/Makefile
22index e5b142c..62fe245 100644
23--- a/elf/Makefile
24+++ b/elf/Makefile
25@@ -358,7 +358,7 @@ $(objpfx)interp.os: $(elf-objpfx)runtime-linker.h
26
27 $(elf-objpfx)runtime-linker.h: $(elf-objpfx)runtime-linker.st; @:
28 $(elf-objpfx)runtime-linker.st: $(common-objpfx)config.make
29- $(name-target-directory)
30+ $(make-target-directory)
31 echo '#define RUNTIME_LINKER "$(rtlddir)/$(rtld-installed-name)"' \
32 > ${@:st=T}
33 $(move-if-change) ${@:st=T} ${@:st=h}
34--
351.7.9.5
36