aboutsummaryrefslogtreecommitdiff
path: root/arch/sandbox/cpu/sdl.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2018-12-17 09:12:16 -0700
committerSimon Glass <sjg@chromium.org>2019-01-14 17:47:13 -0700
commit398ae02669d1300ab2cdcbbdfe1c5c264d47b718 (patch)
treee408f9928cdb85a3470e24e6712969a285831113 /arch/sandbox/cpu/sdl.c
parente74429bb17533c454b804e523ff5724344711ad2 (diff)
downloadu-boot-398ae02669d1300ab2cdcbbdfe1c5c264d47b718.zip
u-boot-398ae02669d1300ab2cdcbbdfe1c5c264d47b718.tar.gz
u-boot-398ae02669d1300ab2cdcbbdfe1c5c264d47b718.tar.bz2
sandbox: Correct SDL build flags
The check for CONFIG_SANDBOX_SDL in config.mk does not work since the build config is not available by the time that file is included. Remove it so that we always call sdl-config except when NO_SDL is used. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/cpu/sdl.c')
-rw-r--r--arch/sandbox/cpu/sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/cpu/sdl.c b/arch/sandbox/cpu/sdl.c
index f668f53..080c7c8 100644
--- a/arch/sandbox/cpu/sdl.c
+++ b/arch/sandbox/cpu/sdl.c
@@ -6,7 +6,7 @@
#include <errno.h>
#include <unistd.h>
#include <linux/input.h>
-#include <SDL/SDL.h>
+#include <SDL.h>
#include <asm/state.h>
/**