diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-23 08:22:26 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-03-24 07:35:22 +0100 |
commit | ff0f815593c33f1a82ba4d1cbe41e6b987da1f47 (patch) | |
tree | 22b43fa2e84f25cc948df79f9e9de07e8ec57418 /toolchain-layer/recipes-devtools/binutils/binutils-2.20.1/libiberty_path_fix.patch | |
parent | 6b22bd198a87b5f113971d8fcd0e7211cd143c7d (diff) | |
download | meta-openembedded-ff0f815593c33f1a82ba4d1cbe41e6b987da1f47.tar.gz |
toolchain-layer: move binutils and gcc from meta-oe into here
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Eric Bénard <eric@eukrea.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'toolchain-layer/recipes-devtools/binutils/binutils-2.20.1/libiberty_path_fix.patch')
-rw-r--r-- | toolchain-layer/recipes-devtools/binutils/binutils-2.20.1/libiberty_path_fix.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/toolchain-layer/recipes-devtools/binutils/binutils-2.20.1/libiberty_path_fix.patch b/toolchain-layer/recipes-devtools/binutils/binutils-2.20.1/libiberty_path_fix.patch new file mode 100644 index 0000000000..36a14d7a18 --- /dev/null +++ b/toolchain-layer/recipes-devtools/binutils/binutils-2.20.1/libiberty_path_fix.patch | |||
@@ -0,0 +1,20 @@ | |||
1 | don't let the distro compiler point to the wrong installation location | ||
2 | |||
3 | Thanks to RP for helping find the source code causing the issue. | ||
4 | |||
5 | 2010/08/13 | ||
6 | Nitin A Kamble <nitin.a.kamble@intel.com> | ||
7 | Index: binutils-2.20.1/libiberty/Makefile.in | ||
8 | =================================================================== | ||
9 | --- binutils-2.20.1.orig/libiberty/Makefile.in | ||
10 | +++ binutils-2.20.1/libiberty/Makefile.in | ||
11 | @@ -327,7 +327,8 @@ install: install_to_$(INSTALL_DEST) inst | ||
12 | # multilib-specific flags, it's overridden by FLAGS_TO_PASS from the | ||
13 | # default multilib, so we have to take CFLAGS into account as well, | ||
14 | # since it will be passed the multilib flags. | ||
15 | -MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory` | ||
16 | +#MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory` | ||
17 | +MULTIOSDIR = "" | ||
18 | install_to_libdir: all | ||
19 | ${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR) | ||
20 | $(INSTALL_DATA) $(TARGETLIB) $(DESTDIR)$(libdir)/$(MULTIOSDIR)/$(TARGETLIB)n | ||