diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2023-03-11 05:13:50 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-11 05:13:50 +1000 |
commit | cfd63599912b1d101c3f954e804a511456ad71ed (patch) | |
tree | 16f619e1883950c10e070651e5525cd2139ff52c /docs | |
parent | 0a702db6ca1293cebb41e37f52d751ac28736a2d (diff) | |
parent | e192de54fd31bd71fb327afd5ecb5cd7a69dde7d (diff) |
Merge pull request #22852 from KyleSanderson/cleaning-up-the-house
Add binary addons clean documentation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.Android.md | 6 | ||||
-rw-r--r-- | docs/README.FreeBSD.md | 6 | ||||
-rw-r--r-- | docs/README.Linux.md | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/docs/README.Android.md b/docs/README.Android.md index 3cf0b74449..b83c027911 100644 --- a/docs/README.Android.md +++ b/docs/README.Android.md @@ -279,6 +279,12 @@ Build a specific group of add-ons: ``` make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons ADDONS="pvr.*" ``` + +Clean-up binary add-ons: +``` +make -C tools/depends/target/binary-addons clean +``` + For additional information on regular expression usage for ADDONS_TO_BUILD, view ADDONS_TO_BUILD section located at [Kodi add-ons CMake based buildsystem](../cmake/addons/README.md) **[back to top](#table-of-contents)** diff --git a/docs/README.FreeBSD.md b/docs/README.FreeBSD.md index 8424cc1aa6..ca29d13c84 100644 --- a/docs/README.FreeBSD.md +++ b/docs/README.FreeBSD.md @@ -168,6 +168,12 @@ Build a specific group of add-ons: ``` sudo gmake -j$(sysctl hw.ncpu | awk '{print $2}') -C tools/depends/target/binary-addons PREFIX=/usr/local ADDONS="pvr.*" ``` + +Clean-up binary add-ons: +``` +sudo gmake -C tools/depends/target/binary-addons clean +``` + For additional information on regular expression usage for ADDONS_TO_BUILD, view ADDONS_TO_BUILD section located at [Kodi add-ons CMake based buildsystem](../cmake/addons/README.md) **NOTE:** `PREFIX=/usr/local` should match Kodi's `-DCMAKE_INSTALL_PREFIX=` prefix used in **[section 4.1](#41-configure-build)**. diff --git a/docs/README.Linux.md b/docs/README.Linux.md index 01ae57c9ee..2789aae1a6 100644 --- a/docs/README.Linux.md +++ b/docs/README.Linux.md @@ -252,6 +252,12 @@ Build a specific group of add-ons: ``` sudo make -j$(getconf _NPROCESSORS_ONLN) -C tools/depends/target/binary-addons PREFIX=/usr/local ADDONS="pvr.*" ``` + +Clean-up binary add-ons: +``` +sudo make -C tools/depends/target/binary-addons clean +``` + For additional information on regular expression usage for ADDONS_TO_BUILD, view ADDONS_TO_BUILD section located here [Kodi add-ons CMake based buildsystem](../cmake/addons/README.md) **NOTE:** `PREFIX=/usr/local` should match Kodi's `-DCMAKE_INSTALL_PREFIX=` prefix used in **[section 4.1](#41-configure-build)**. |