diff options
| author | Robert Yang <liezhi.yang@windriver.com> | 2015-04-01 00:53:02 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-02 12:02:36 +0100 |
| commit | 1674b5380c0a13e88cb0e615438bdbcaa5761e3c (patch) | |
| tree | 6bef1a99c58215ff91cb00627bb8de7378d0ad07 | |
| parent | dc2d0e8df0dbbec406166969f54b6d1e43b41d09 (diff) | |
| download | poky-1674b5380c0a13e88cb0e615438bdbcaa5761e3c.tar.gz | |
glibc: fix a typo
Fixed a typo:
name-target-directory -> make-target-directory
There is no name-target-directory, it should be make-target-directory,
this fixed the error:
/bin/bash: /path/to/elf/runtime-linker.T: No such file or directory
Makefile:361: recipe for target '/path/to/elf/runtime-linker.st' failed
(From OE-Core rev: 9e4880c5bee33032142bee18a63d7f4a9db4a55a)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch | 36 | ||||
| -rw-r--r-- | meta/recipes-core/glibc/glibc_2.21.bb | 1 |
2 files changed, 37 insertions, 0 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 new file mode 100644 index 0000000000..ec480067a8 --- /dev/null +++ b/meta/recipes-core/glibc/glibc/elf-Makefile-fix-a-typo.patch | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | From 6207fb45553ee98f2f326883b7c21b76c8267343 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Robert Yang <liezhi.yang@windriver.com> | ||
| 3 | Date: Tue, 31 Mar 2015 02:31:25 -0700 | ||
| 4 | Subject: [PATCH] elf/Makefile: fix a typo | ||
| 5 | |||
| 6 | Fixed a typo: | ||
| 7 | name-target-directory -> make-target-directory | ||
| 8 | |||
| 9 | There is no name-target-directory, it should be make-target-directory, | ||
| 10 | this fixed the error: | ||
| 11 | /bin/bash: /path/to/elf/runtime-linker.T: No such file or directory | ||
| 12 | Makefile:361: recipe for target '/path/to/elf/runtime-linker.st' failed | ||
| 13 | |||
| 14 | Upstream-Status: Pending | ||
| 15 | |||
| 16 | Signed-off-by: Robert Yang <liezhi.yang@windriver.com> | ||
| 17 | --- | ||
| 18 | elf/Makefile | 2 +- | ||
| 19 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 20 | |||
| 21 | diff --git a/elf/Makefile b/elf/Makefile | ||
| 22 | index 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 | -- | ||
| 35 | 1.7.9.5 | ||
| 36 | |||
diff --git a/meta/recipes-core/glibc/glibc_2.21.bb b/meta/recipes-core/glibc/glibc_2.21.bb index 91feff58ce..fcef4ff3e5 100644 --- a/meta/recipes-core/glibc/glibc_2.21.bb +++ b/meta/recipes-core/glibc/glibc_2.21.bb | |||
| @@ -25,6 +25,7 @@ SRC_URI = "git://sourceware.org/git/glibc.git;branch=${BRANCH} \ | |||
| 25 | file://0001-Add-unused-attribute.patch \ | 25 | file://0001-Add-unused-attribute.patch \ |
| 26 | file://0001-When-disabling-SSE-also-make-sure-that-fpmath-is-not.patch \ | 26 | file://0001-When-disabling-SSE-also-make-sure-that-fpmath-is-not.patch \ |
| 27 | file://0001-yes-within-the-path-sets-wrong-config-variables.patch \ | 27 | file://0001-yes-within-the-path-sets-wrong-config-variables.patch \ |
| 28 | file://elf-Makefile-fix-a-typo.patch \ | ||
| 28 | ${EGLIBCPATCHES} \ | 29 | ${EGLIBCPATCHES} \ |
| 29 | " | 30 | " |
| 30 | EGLIBCPATCHES = "\ | 31 | EGLIBCPATCHES = "\ |
