blob: 8a8d47495abcf5aac853e48a2f99224deb29f53e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
From: Mathieu Trudel-Lapierre <mathieu.trudel-lapierre@canonical.com>
Subject: Fix Makefile to successfully build for shim with cert and sbsign
sbsign needs shim.key and shim.crt, but the only target that exists in
makefile is shim.crt. shim.key is a side-effect building shim.crt.
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: b/Makefile
===================================================================
--- a/Makefile
+++ b/Makefile
@@ -362,6 +362,6 @@ archive: tag
@rm -rf /tmp/shim-$(VERSION)
@echo "The archive is in shim-$(VERSION).tar.bz2"
-.PHONY : install-deps
+.PHONY : install-deps shim.key
export ARCH CC LD OBJCOPY EFI_INCLUDE
|