From 9214d57c0bc9f66491e24bafd9ac2b89ed80b9e9 Mon Sep 17 00:00:00 2001
From: emintham <emintham@gmail.com>
Date: Fri, 24 Mar 2017 12:11:32 -0400
Subject: [PATCH] Tidy up sublists in Linux Build Dependencies

---
 Building-for-Linux.md | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/Building-for-Linux.md b/Building-for-Linux.md
index fdd7c62..376a8a5 100644
--- a/Building-for-Linux.md
+++ b/Building-for-Linux.md
@@ -5,20 +5,20 @@ An unofficial PKGBUILD of Citra is available for Arch Linux on the [AUR](https:/
 You'll need to download and install the following to build Citra:
 
 * [SDL2](https://www.libsdl.org/download-2.0.php)
- * Deb: `apt-get install sdl2` or `apt-get install libsdl2-2.0-0` or `apt-get install libsdl2-dev`
- * Arch: `pacman -S sdl2`
+  - Deb: `apt-get install sdl2` or `apt-get install libsdl2-2.0-0` or `apt-get install libsdl2-dev`
+  - Arch: `pacman -S sdl2`
 * [Qt](http://qt-project.org/downloads)
- * Deb: `apt-get install qtbase5-dev libqt5opengl5-dev`
- * Arch: `pacman -S qt5`
+  - Deb: `apt-get install qtbase5-dev libqt5opengl5-dev`
+  - Arch: `pacman -S qt5`
 * GCC v5+ (for C++14 support)
- * Deb: `apt-get install build-essential`
- * Arch: `pacman -S base-devel`
+  - Deb: `apt-get install build-essential`
+  - Arch: `pacman -S base-devel`
 * [CMake](http://www.cmake.org/) 3.1+
- * Deb: `apt-get install cmake`
- * Arch: `pacman -S cmake`
+  - Deb: `apt-get install cmake`
+  - Arch: `pacman -S cmake`
 * [Clang](https://github.com/llvm-mirror/clang) 3.8 (optional build alternative)
- * Deb: `apt-get install clang libc++-dev` (in some distros, clang-3.8).
- * Arch: `pacman -S clang libc++`
+  - Deb: `apt-get install clang libc++-dev` (in some distros, clang-3.8).
+  - Arch: `pacman -S clang libc++`
 
 ### Cloning Citra in Git: