blob: f8382f872eb28f06941d305a273c4a36a73496eb [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001From cb36d94dbd521752e6444418af500e139a26eabb Mon Sep 17 00:00:00 2001
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 2 Mar 2015 01:39:01 +0000
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05004Subject: [PATCH 08/14] don't let the distro compiler point to the wrong
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005 installation location
6
7Thanks to RP for helping find the source code causing the issue.
8
92010/08/13
10Nitin A Kamble <nitin.a.kamble@intel.com>
11
12Upstream-Status: Inappropriate [embedded specific]
13
14Signed-off-by: Khem Raj <raj.khem@gmail.com>
15---
16 libiberty/Makefile.in | 3 ++-
17 1 file changed, 2 insertions(+), 1 deletion(-)
18
19diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050020index 7d7e2f4..1aaaf0e 100644
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021--- a/libiberty/Makefile.in
22+++ b/libiberty/Makefile.in
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050023@@ -364,7 +364,8 @@ install-strip: install
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024 # 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--
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500342.7.1
Patrick Williamsc124f4f2015-09-15 14:41:29 -050035