diff --git a/README.rst b/README.rst
index d2fbc7e5eb4f28b133cbb5b8f049a7647d4bb1d2..1e05d1eb3478392f1f5be9cbad7e4652311bdd77 100644
--- a/README.rst
+++ b/README.rst
@@ -1,7 +1,7 @@
 jami-project
 ============
 
-This repository is the master repository for Jami. It contains a build script, make-ring.py,
+This repository is the master repository for Jami. It contains a build script, build.py,
 that can be used to build and install ring from source on different platforms.
 
 More documentation can be found on http://docs.jami.net. You may also build the documentation
@@ -20,7 +20,7 @@ Initialize the repositories
 
 .. code-block:: bash
 
-    ./make-ring.py --init
+    ./build.py --init
 
 It initializes and updates the submodules to set them at the top of their master branch. This
 is ideal to have the latest development version.
@@ -38,7 +38,7 @@ On Linux
 
 .. code-block:: bash
 
-    ./make-ring.py --dependencies
+    ./build.py --dependencies
 
 Your distribution's package manager will be used.
 
@@ -46,13 +46,13 @@ Your distribution's package manager will be used.
 
 .. code-block:: bash
 
-    ./make-ring.py --install
+    ./build.py --install
 
 3. Run daemon and client that were installed locally:
 
 .. code-block:: bash
 
-	./make-ring.py --run
+	./build.py --run
 
 You can then stop the processes with CTRL-C.
 
@@ -63,7 +63,7 @@ Install globally for all users instead
 
 .. code-block:: bash
 
-    ./make-ring.py --install --global-install
+    ./build.py --install --global-install
 
 Run global install:
 
@@ -77,7 +77,7 @@ Uninstall the global install:
 
 .. code-block:: bash
 
-    ./make-ring.py --uninstall
+    ./build.py --uninstall
 
 On OSX
 ------
@@ -88,14 +88,14 @@ Build and install all the dependencies:
 
 .. code-block:: bash
 
-    ./make-ring.py --dependencies
+    ./build.py --dependencies
 
 
 Build and install locally under this repository:
 
 .. code-block:: bash
 
-    ./make-ring.py --install
+    ./build.py --install
 
 Output
 ''''''
@@ -111,7 +111,7 @@ Build and install locally under this repository:
 
 .. code-block:: bash
 
-    ./make-ring.py --install --distribution=Android
+    ./build.py --install --distribution=Android
 
 Output
 ''''''
diff --git a/build.py b/build.py
index 1e86313433a95771288d412078a336d72442c811..a09beda832402edaf0e73423f29b6ef13f0b63b4 100755
--- a/build.py
+++ b/build.py
@@ -1,9 +1,9 @@
 #!/usr/bin/env python3
 #
-# This is the Ring build helper, it can do these things:
-#  - Build Ring
-#  - Install Ring
-#  - Run Ring
+# This is the Jami build helper, it can do these things:
+#  - Build Jami
+#  - Install Jami
+#  - Run Jami
 #
 
 import argparse
diff --git a/docs/source/dev/compiling_and_installing/ring-project.rst b/docs/source/dev/compiling_and_installing/ring-project.rst
index 24957277a49a730a48fecb0356f4bff4391c37ec..64a78e848b746feaf00d0b8461e584f567c61697 100644
--- a/docs/source/dev/compiling_and_installing/ring-project.rst
+++ b/docs/source/dev/compiling_and_installing/ring-project.rst
@@ -11,7 +11,7 @@ Initialize the repositories
 
 .. code-block:: bash
 
-    ./make-ring.py --init
+    ./build.py --init
 
 It initializes and updates the submodules to set them at the top of their master branch. This
 is ideal to have the latest development version.
@@ -29,7 +29,7 @@ On Linux
 
 .. code-block:: bash
 
-    ./make-ring.py --dependencies
+    ./build.py --dependencies
 
 Your distribution's package manager will be used.
 
@@ -37,13 +37,13 @@ Your distribution's package manager will be used.
 
 .. code-block:: bash
 
-    ./make-ring.py --install
+    ./build.py --install
 
 3. Run daemon and client that were installed locally:
 
 .. code-block:: bash
 
-	./make-ring.py --run
+	./build.py --run
 
 You can then stop the processes with CTRL-C.
 
@@ -54,7 +54,7 @@ Install globally for all users instead
 
 .. code-block:: bash
 
-    ./make-ring.py --install --global-install
+    ./build.py --install --global-install
 
 Run global install:
 
@@ -68,7 +68,7 @@ Uninstall the global install:
 
 .. code-block:: bash
 
-    ./make-ring.py --uninstall
+    ./build.py --uninstall
 
 On OSX
 ######
@@ -79,14 +79,14 @@ Build and install all the dependencies:
 
 .. code-block:: bash
 
-    ./make-ring.py --dependencies
+    ./build.py --dependencies
 
 
 Build and install locally under this repository:
 
 .. code-block:: bash
 
-    ./make-ring.py --install
+    ./build.py --install
 
 Output
 ------
@@ -102,7 +102,7 @@ Build and install locally under this repository:
 
 .. code-block:: bash
 
-    ./make-ring.py --install --distribution=Android
+    ./build.py --install --distribution=Android
 
 Output
 ------