From 8046c198989cc0ea7824f74dd2c37aeca744b3e3 Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Sat, 12 Sep 2015 10:02:06 -0700 Subject: [PATCH] Correcting bad flags.txt path. Fixes #424. --- premake5.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/premake5.lua b/premake5.lua index 47ea4af6c..7f96391c3 100644 --- a/premake5.lua +++ b/premake5.lua @@ -108,7 +108,7 @@ filter("platforms:Windows") -- Create scratch/ path and dummy flags file if needed. if not os.isdir("scratch") then os.mkdir("scratch") - local flags_file = io.open("scratch1/flags.txt", "w") + local flags_file = io.open("scratch/flags.txt", "w") flags_file:write("# Put flags, one on each line.\n") flags_file:write("# Launch executables with --flags_file=scratch/flags.txt\n") flags_file:write("\n") @@ -153,7 +153,7 @@ solution("xenia") include("third_party/libav.lua") include("third_party/xxhash.lua") include("build_tools/third_party/gflags.lua") - + include("src/xenia") include("src/xenia/app") include("src/xenia/apu")