From 70c321ad7ffe94ebfe313698f9f2508f226bdb9a Mon Sep 17 00:00:00 2001 From: Weiyi Wang Date: Thu, 19 Jul 2018 14:06:28 +0300 Subject: [PATCH] Updated Common Issues (markdown) --- Common-Issues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common-Issues.md b/Common-Issues.md index d8230a0..710957a 100644 --- a/Common-Issues.md +++ b/Common-Issues.md @@ -3,7 +3,7 @@ * If you have encountered such an error: `/path/to/citra/externals/ does not contain a CMakeLists.txt file.`, while configuring in CMake, it means you forgot to add `--recursive` when `git clone`. You can fix it by the following commands to obtain all submodules: git submodule init - git submodule update + git submodule update --recursive ### Building for Windows ---