doc: replace PREFIX with CMAKE_INSTALL_PREFIX in cmake instructions (closes #354)

v2.8-utf8proc
Sébastien Helleu 2015-05-17 08:48:54 +02:00
parent 1fb3e8b2dc
commit 1396e9b0ef
15 changed files with 21 additions and 14 deletions

View File

@ -15,6 +15,13 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
(file 'ReleaseNotes.asciidoc' in sources).
== Version 1.3 (under dev)
=== Bugs fixed
* doc: replace PREFIX with CMAKE_INSTALL_PREFIX in cmake instructions
(closes #354)
== Version 1.2 (2015-05-10)
=== New features

View File

@ -64,7 +64,7 @@ Build with autotools requires more dependencies and is slower than with CMake.
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=/path/to/directory
$ cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/directory
$ make
$ make install (as root for installation in system directories)
----

View File

@ -99,7 +99,7 @@ Um die Quellen zu übersetzen, wird cmake empfohlen:
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ make
$ make install
----

View File

@ -198,7 +198,7 @@ $ make
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=/Pfad/zum/Verzeichnis
$ cmake .. -DCMAKE_INSTALL_PREFIX=/Pfad/zum/Verzeichnis
$ make
$ make install
----

View File

@ -87,7 +87,7 @@ To build sources, cmake is recommended:
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ make
$ make install
----

View File

@ -187,7 +187,7 @@ $ make
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=/path/to/directory
$ cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/directory
$ make
$ make install
----

View File

@ -91,7 +91,7 @@ Pour compiler les sources, cmake est recommandé :
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ make
$ make install
----

View File

@ -192,7 +192,7 @@ $ make
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=/chemin/vers/répertoire
$ cmake .. -DCMAKE_INSTALL_PREFIX=/chemin/vers/répertoire
$ make
$ make install
----

View File

@ -96,7 +96,7 @@ Per compilare i sorgenti, si raccomanda cmake:
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ make
$ make install
----

View File

@ -210,7 +210,7 @@ $ make
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=/path/della/directory
$ cmake .. -DCMAKE_INSTALL_PREFIX=/path/della/directory
$ make
$ make install
----

View File

@ -92,7 +92,7 @@ $ cd weechat-devel
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ make
$ make install
----

View File

@ -192,7 +192,7 @@ $ make
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=/path/to/directory
$ cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/directory
$ make
$ make install
----

View File

@ -92,7 +92,7 @@ Do zbudowania źródeł zaleca się cmake:
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ cmake .. -DCMAKE_INSTALL_PREFIX=$HOME/weechat-git -DWEECHAT_HOME=~/.weechat-dev -DCMAKE_BUILD_TYPE=Debug
$ make
$ make install
----

View File

@ -194,7 +194,7 @@ $ make
----
$ mkdir build
$ cd build
$ cmake .. -DPREFIX=/ścieżka/do/katalogu
$ cmake .. -DCMAKE_INSTALL_PREFIX=/ścieżka/do/katalogu
$ make
$ make install
----

View File

@ -58,7 +58,7 @@ lua perl pkg-config python ruby source-highlight tcl zlib-devel"
# which is not yet available in Cygwin
# 4. disable Javascript plugin because libv8 is not available in Cygwin
#
CYGCMAKE_ARGS="-DPREFIX=/usr -DENABLE_MAN=ON -DENABLE_DOC=ON \
CYGCMAKE_ARGS="-DCMAKE_INSTALL_PREFIX=/usr -DENABLE_MAN=ON -DENABLE_DOC=ON \
-DENABLE_GUILE=OFF -DENABLE_JAVASCRIPT=OFF"
#