diff options
-rw-r--r-- | README.md | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -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. |