mirror of
https://github.com/transmission/transmission
synced 2025-01-03 05:25:52 +00:00
docs: git submodule on building should be recursive (#3927)
* docs: git submodule on building should be recursive * docs: forgot update scenario
This commit is contained in:
parent
b0de4b7a89
commit
794074b7e1
1 changed files with 2 additions and 2 deletions
|
@ -123,7 +123,7 @@ $ ./configure -q && make -s
|
|||
```console
|
||||
$ git clone https://github.com/transmission/transmission Transmission
|
||||
$ cd Transmission
|
||||
$ git submodule update --init
|
||||
$ git submodule update --init --recursive
|
||||
$ mkdir build
|
||||
$ cd build
|
||||
$ # Use -DCMAKE_BUILD_TYPE=RelWithDebInfo to build optimized binary.
|
||||
|
@ -137,7 +137,7 @@ $ sudo make install
|
|||
$ cd Transmission/build
|
||||
$ make clean
|
||||
$ git pull --rebase --prune
|
||||
$ git submodule update
|
||||
$ git submodule update --recursive
|
||||
$ # Use -DCMAKE_BUILD_TYPE=RelWithDebInfo to build optimized binary.
|
||||
$ cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
|
||||
$ make
|
||||
|
|
Loading…
Reference in a new issue