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:
Federico Scodelaro 2022-10-10 12:05:52 -03:00 committed by GitHub
parent b0de4b7a89
commit 794074b7e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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