55 lines
1.2 KiB
Diff
55 lines
1.2 KiB
Diff
|
From 409b59af29b8749207a527c91dccba7eee98232b Mon Sep 17 00:00:00 2001
|
||
|
From: Gary Lin <glin@suse.com>
|
||
|
Date: Wed, 23 May 2018 15:15:56 +0800
|
||
|
Subject: [PATCH 08/62] Fix typo in debug path in shim.h
|
||
|
|
||
|
Signed-off-by: Gary Lin <glin@suse.com>
|
||
|
Upstream-commit-id: a98c20bbdbb
|
||
|
---
|
||
|
shim.h | 8 ++++----
|
||
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
||
|
|
||
|
diff --git a/shim.h b/shim.h
|
||
|
index a25a660df6a..2b359d821e3 100644
|
||
|
--- a/shim.h
|
||
|
+++ b/shim.h
|
||
|
@@ -43,7 +43,7 @@
|
||
|
#define EFI_ARCH L"x64"
|
||
|
#endif
|
||
|
#ifndef DEBUGDIR
|
||
|
-#define DEBUGDIR L"/usr/lub/debug/usr/share/shim/x64/"
|
||
|
+#define DEBUGDIR L"/usr/lib/debug/usr/share/shim/x64/"
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
@@ -58,7 +58,7 @@
|
||
|
#define EFI_ARCH L"ia32"
|
||
|
#endif
|
||
|
#ifndef DEBUGDIR
|
||
|
-#define DEBUGDIR L"/usr/lub/debug/usr/share/shim/ia32/"
|
||
|
+#define DEBUGDIR L"/usr/lib/debug/usr/share/shim/ia32/"
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
@@ -73,7 +73,7 @@
|
||
|
#define EFI_ARCH L"aa64"
|
||
|
#endif
|
||
|
#ifndef DEBUGDIR
|
||
|
-#define DEBUGDIR L"/usr/lub/debug/usr/share/shim/aa64/"
|
||
|
+#define DEBUGDIR L"/usr/lib/debug/usr/share/shim/aa64/"
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
@@ -88,7 +88,7 @@
|
||
|
#define EFI_ARCH L"arm"
|
||
|
#endif
|
||
|
#ifndef DEBUGDIR
|
||
|
-#define DEBUGDIR L"/usr/lub/debug/usr/share/shim/arm/"
|
||
|
+#define DEBUGDIR L"/usr/lib/debug/usr/share/shim/arm/"
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
--
|
||
|
2.26.2
|
||
|
|