diff options
author | rbuj <[email protected]> | 2021-01-27 12:56:35 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-04 21:31:19 +0100 |
commit | 1974c5934f9c671f336038449b37b8888b66380b (patch) | |
tree | d480488dd0cf9f667d25311594bf122a33be29ef /README.md | |
parent | c0452da1a5cd80c9debd712ed435c188ae0fe9ca (diff) | |
download | pluma-1974c5934f9c671f336038449b37b8888b66380b.tar.bz2 pluma-1974c5934f9c671f336038449b37b8888b66380b.tar.xz |
README.md: configure options
Diffstat (limited to 'README.md')
-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. |