diff options
author | Memphiz <memphis@machzwo.de> | 2018-10-04 09:29:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 09:29:01 +0200 |
commit | 95c83f0205679a0475aed64ed696ae66d184c023 (patch) | |
tree | 9389e5868965553d037892859d54baed9f982a38 /docs | |
parent | 4e8fd14971696912b3c830adaab9eabe801fd1ee (diff) | |
parent | 6d1afec0eae06a7d611f8cc005c81b3c47f63522 (diff) |
Merge pull request #14487 from pteeson/macOS-README
Clarify choices in Step 5 Build binary add-ons
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.macOS.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/README.macOS.md b/docs/README.macOS.md index 58e2fc4df8..34bad23a38 100644 --- a/docs/README.macOS.md +++ b/docs/README.macOS.md @@ -122,17 +122,21 @@ Change to Kodi's source code directory: cd $HOME/kodi ``` -Build all add-ons: +There are multiple possibilities to choose which addons are built. The following 3 examples will give an idea. + +(1) Build all add-ons: ``` make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons ``` +OR -Build specific add-ons: +(2) Build specific add-ons: ``` make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons ADDONS="audioencoder.flac pvr.vdr.vnsi audiodecoder.snesapu" ``` +OR -Build a specific group of add-ons: +(3) Build a specific group of add-ons: ``` make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons ADDONS="pvr.*" ``` |