summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md14
1 files changed, 10 insertions, 4 deletions
diff --git a/README.md b/README.md
index c361a343..5d6d040c 100644
--- a/README.md
+++ b/README.md
@@ -59,16 +59,22 @@ Simple install procedure:
```
$ git submodule update --init --recursive # Init git submodules
-$ ./autogen.sh # Build configuration
+$ NOCONFIGURE=1 ./autogen.sh # Copy configuration requirements
+$ ./configure # Build configuration
$ make # Build
[ Become root if necessary ]
$ make install # Installation
```
-For installation to a separate prefix change the above `make install` command to
+For installation to a separate prefix change the above `./configure` command to
```
-$ make install --prefix /an/other/path
+$ ./configure --prefix=/an/other/path
```
+To get more information type the command below:
+```
+$ ./configure --help
+```
+
## Running Tests
@@ -107,4 +113,4 @@ In the bug report please include:
Patches should also be submitted to https://github.com/mate-desktop/pluma, preferably via pull requests.
-The Pluma team. \ No newline at end of file
+The Pluma team.