- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From 696d696381dd99ec2bddb1170f96f98da36eb418 Mon Sep 17 00:00:00 2001
|
|
From: Andrei Gherzan <andrei.gherzan@huawei.com>
|
|
Date: Wed, 22 Dec 2021 12:49:25 +0100
|
|
Subject: [PATCH] Fix install path of linux64.h
|
|
|
|
We add linux64.h to tm includes[1] as a relative path to B. This patch
|
|
adapts the install path of linux64.h to match the include in tm.h.
|
|
|
|
[1] 0016-Use-the-multilib-config-files-from-B-instead-of-usin.patch
|
|
|
|
Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com>
|
|
|
|
Upstream-Status: Inappropriate [configuration]
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
gcc/Makefile.in | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
|
|
index 8ef996c0f4d..21daf380e34 100644
|
|
--- a/gcc/Makefile.in
|
|
+++ b/gcc/Makefile.in
|
|
@@ -3731,6 +3731,8 @@ install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
|
|
"$(srcdir)"/config/* | "$(srcdir)"/common/config/* \
|
|
| "$(srcdir)"/c-family/* | "$(srcdir)"/*.def ) \
|
|
base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
|
|
+ */linux64.h ) \
|
|
+ base=`dirname $$path`;;\
|
|
*) base=`basename $$path` ;; \
|
|
esac; \
|
|
dest=$(plugin_includedir)/$$base; \
|