Removed '$' symbols from the start of shell commands. (#7506)
authorRustyRaptor <RustyRaptor@users.noreply.github.com>
Sat, 30 Jun 2018 10:01:56 +0000 (04:01 -0600)
committerLoïc Blot <nerzhul@users.noreply.github.com>
Sat, 30 Jun 2018 10:01:56 +0000 (12:01 +0200)
README.md

index bd131035f4773c76e81dc12793b7b2f072a663de..6420698ed9f5a43d79acde85429825499b06068a 100644 (file)
--- a/README.md
+++ b/README.md
@@ -125,11 +125,11 @@ Compiling
 
 For Debian/Ubuntu:
 
-    sudo apt-get install build-essential libirrlicht-dev cmake libbz2-dev libpng-dev libjpeg-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev zlib1g-dev libgmp-dev libjsoncpp-dev
+    sudo apt-get install build-essential libirrlicht-dev cmake libbz2-dev libpng-dev libjpeg-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libcurl4-gnutls-dev libfreetype6-dev zlib1g-dev libgmp-dev libjsoncpp-dev
 
 For Fedora users:
 
-    sudo dnf install make automake gcc gcc-c++ kernel-devel cmake libcurl-devel openal-soft-devel libvorbis-devel libXxf86vm-devel libogg-devel freetype-devel mesa-libGL-devel zlib-devel jsoncpp-devel irrlicht-devel bzip2-libs gmp-devel sqlite-devel luajit-devel leveldb-devel ncurses-devel doxygen spatialindex-devel bzip2-devel
+    sudo dnf install make automake gcc gcc-c++ kernel-devel cmake libcurl-devel openal-soft-devel libvorbis-devel libXxf86vm-devel libogg-devel freetype-devel mesa-libGL-devel zlib-devel jsoncpp-devel irrlicht-devel bzip2-libs gmp-devel sqlite-devel luajit-devel leveldb-devel ncurses-devel doxygen spatialindex-devel bzip2-devel
 
 #### Download
 
@@ -137,45 +137,45 @@ You can install git for easily keeping your copy up to date.
 If you don’t want git, read below on how to get the source without git.  
 This is an example for installing git on Debian/Ubuntu:
 
-    sudo apt-get install git
+    sudo apt-get install git
 
 For Fedora users:
 
-    sudo dnf install git
+    sudo dnf install git
 
 Download source (this is the URL to the latest of source repository, which might not work at all times) using git:
 
-    git clone --depth 1 https://github.com/minetest/minetest.git
-    cd minetest
+    git clone --depth 1 https://github.com/minetest/minetest.git
+    cd minetest
 
 Download minetest_game (otherwise only the "Minimal development test" game is available) using git:
 
-    git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game
+    git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game
 
 Download source, without using git:
 
-    wget https://github.com/minetest/minetest/archive/master.tar.gz
-    tar xf master.tar.gz
-    cd minetest-master
+    wget https://github.com/minetest/minetest/archive/master.tar.gz
+    tar xf master.tar.gz
+    cd minetest-master
 
 Download minetest_game, without using git:
 
-    cd games/
-    wget https://github.com/minetest/minetest_game/archive/master.tar.gz
-    tar xf master.tar.gz
-    mv minetest_game-master minetest_game
-    cd ..
+    cd games/
+    wget https://github.com/minetest/minetest_game/archive/master.tar.gz
+    tar xf master.tar.gz
+    mv minetest_game-master minetest_game
+    cd ..
 
 #### Build
 
 Build a version that runs directly from the source directory:
 
-    cmake . -DRUN_IN_PLACE=TRUE
-    make -j <number of processors>
+    cmake . -DRUN_IN_PLACE=TRUE
+    make -j <number of processors>
 
 Run it:
 
-    ./bin/minetest
+    ./bin/minetest
 
 - Use `cmake . -LH` to see all CMake options and their current state
 - If you want to install it system-wide (or are making a distribution package),