]> code.ossystems Code Review - openembedded-core.git/blob
7f8fc9a5c05e4ee36e2d18c088bb72219954a8a4
[openembedded-core.git] /
1 From 2b81508b9af76db292cd756432b03035cb8157e0 Mon Sep 17 00:00:00 2001
2 From: Khem Raj <raj.khem@gmail.com>
3 Date: Mon, 2 Mar 2015 01:39:01 +0000
4 Subject: [PATCH 07/17] don't let the distro compiler point to the wrong
5  installation location
6
7 Thanks to RP for helping find the source code causing the issue.
8
9 2010/08/13
10 Nitin A Kamble <nitin.a.kamble@intel.com>
11
12 Upstream-Status: Inappropriate [embedded specific]
13
14 Signed-off-by: Khem Raj <raj.khem@gmail.com>
15 ---
16  libiberty/Makefile.in | 3 ++-
17  1 file changed, 2 insertions(+), 1 deletion(-)
18
19 diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in
20 index 895f701bcd0..97a53f15bb6 100644
21 --- a/libiberty/Makefile.in
22 +++ b/libiberty/Makefile.in
23 @@ -367,7 +367,8 @@ install-strip: install
24  # multilib-specific flags, it's overridden by FLAGS_TO_PASS from the
25  # default multilib, so we have to take CFLAGS into account as well,
26  # since it will be passed the multilib flags.
27 -MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory`
28 +#MULTIOSDIR = `$(CC) $(CFLAGS) -print-multi-os-directory`
29 +MULTIOSDIR = ""
30  install_to_libdir: all
31         if test -n "${target_header_dir}"; then \
32                 ${mkinstalldirs} $(DESTDIR)$(libdir)/$(MULTIOSDIR); \
33 -- 
34 2.28.0
35