mirror of
https://git.yoctoproject.org/poky
synced 2026-02-22 17:39:39 +01:00
* add git headers so that all can be applied with git am (From OE-Core rev: 22fdcdd217b8d5bd4c8e418566302cdafa219e9a) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
957 B
Diff
30 lines
957 B
Diff
From 66447f7c5c6996481ebd68ce8224d3de7525aad8 Mon Sep 17 00:00:00 2001
|
|
From: "H. Peter Anvin (Intel)" <hpa@zytor.com>
|
|
Date: Wed, 6 Feb 2019 11:30:51 -0800
|
|
Subject: [PATCH] install: don't install obsolete file com32.ld
|
|
|
|
com32.ld has been obsolete for a long time, and has been removed now;
|
|
don't install it either.
|
|
|
|
Reported-by: Joakim Tjernlund <Joakim.Tjernlund@infinera.com>
|
|
Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
|
|
|
|
Upstream-Status: Backport
|
|
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
|
---
|
|
com32/lib/Makefile | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/com32/lib/Makefile b/com32/lib/Makefile
|
|
index 74fff14..6a93149 100644
|
|
--- a/com32/lib/Makefile
|
|
+++ b/com32/lib/Makefile
|
|
@@ -113,7 +113,6 @@ spotless: clean
|
|
|
|
install: all
|
|
mkdir -m 755 -p $(INSTALLROOT)$(COM32DIR)
|
|
- install -m 644 $(SRC)/com32.ld $(INSTALLROOT)$(COM32DIR)
|
|
-rm -rf $(INSTALLROOT)$(COM32DIR)/include
|
|
cp -r $(SRC)/../include $(INSTALLROOT)$(COM32DIR)
|
|
|