Do not apply friction if Tux's x-velocity is zero.
[supertux.git] / INSTALL
diff --git a/INSTALL b/INSTALL
index 40ee458..92a616e 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -73,9 +73,6 @@ REQUIREMENTS
 INSTALLING UNDER LINUX/UNIX USING CMAKE
 ---------------------------------------
 
-  This section details how to build SuperTux using CMake. If you want to use 
-  perforce jam to build SuperTux, please skip to the appropriate section.
-
   SuperTux uses CMake to generate a set of Makefiles for the build process. To
   generate these Makefiles and build SuperTux, perform the following steps:
 
@@ -90,18 +87,18 @@ INSTALLING UNDER LINUX/UNIX USING CMAKE
        SuperTux, install those first, then try running CMake again. See below
        for instructions on how to change to standard options.
 
-    2. Type `make' to start the build process.
+    4. Type `make' to start the build process.
 
-    3. Type `make install' to install the programs and any data files and
+    5. Type `make install' to install the programs and any data files and
        documentation. (You should be a root user on Linux systems.
        You can become a root user with the `su' command or by using
        `sudo make install')
 
-    4. The game should work now and you can remove the source directory.
+    6. The game should work now and you can remove the source directory.
 
   You can customize the build process by setting additional options for CMake.
   The easiest way to do this is to use run `ccmake ..' instead of `cmake ..' 
-  to bring up the curses-based user interface of CMake. Select and option using the
+  to bring up the curses-based user interface of CMake. Select an option using the
   arrow keys, change the selected option by pressing the Enter key, then
   hit the `c' (repeatedly, if necessary) to apply your changes and bring
   up new options resulting from your newly set ones. When you are done, press 
@@ -114,7 +111,7 @@ INSTALLING UNDER LINUX/UNIX USING CMAKE
         Generates Makefiles that print all commands prior to executing them.
     -Dxxx_LIBRARY=/path/to/library.so -Dxxx_INCLUDE_DIR=/path/to/headerfiles
         Manually specify the installation directory of a library.
-    -DDEBUG=ON
+    -DCMAKE_BUILD_TYPE=DEBUG
         Enables debug mode and compiles extra debug symbols into the SuperTux
         executable. This is useful when sending in bug reports to the
         developers.