blob: 6d3270f891431ace174daa85b065c64432886195 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 8519d61a7097498b0ee93fb8dc8262286825f3e5 Mon Sep 17 00:00:00 2001
2From: Andrea Adami <andrea.adami@gmail.com>
3Date: Thu, 1 May 2014 23:58:51 +0200
4Subject: [PATCH 1/4] kexecboot: fix build when S != B
5
6* fatal error: ../config.h: No such file or directory
7
8Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
9---
10 machine/zaurus.c | 2 +-
11 res/theme-gui.h | 2 +-
12 res/theme-tui.h | 4 ++--
13 3 files changed, 4 insertions(+), 4 deletions(-)
14
15diff --git a/machine/zaurus.c b/machine/zaurus.c
16index ea21047..83be13b 100644
17--- a/machine/zaurus.c
18+++ b/machine/zaurus.c
19@@ -25,7 +25,7 @@
20 *
21 */
22
23-#include "../config.h"
24+#include "config.h"
25
26 #ifdef USE_ZAURUS
27
28diff --git a/res/theme-gui.h b/res/theme-gui.h
29index f8fef7f..79bed39 100644
30--- a/res/theme-gui.h
31+++ b/res/theme-gui.h
32@@ -15,7 +15,7 @@
33 *
34 */
35
36-#include "../config.h"
37+#include "config.h"
38
39 #ifdef USE_ICONS
40 /** Icons **/
41diff --git a/res/theme-tui.h b/res/theme-tui.h
42index 94e7693..909be56 100644
43--- a/res/theme-tui.h
44+++ b/res/theme-tui.h
45@@ -15,11 +15,11 @@
46 *
47 */
48
49-#include "../config.h"
50+#include "config.h"
51
52 #ifdef USE_TEXTUI
53 /** TEXT UI colors **/
54-#include "../termseq.h"
55+#include "termseq.h"
56
57 /* Background color pair */
58 #define TUI_CLR_BG TERM_CSI TERM_BG_BLACK ";" TERM_FG_WHITE TERM_SGR
59--
601.9.1
61