summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2016-07-02 05:05:30 (GMT)
committerGitHub <noreply@github.com>2016-07-02 05:05:30 (GMT)
commitf82fe5859a567fe5ce6457a96a62092d8f3573e3 (patch)
tree6ead71fd80efa868dd542d4bb197a4851380e716
parentf1c97b2b7dd59b2c2c3b2a142804a3315f5e3101 (diff)
parent33a65822956c08e38463a69e0479b8a0b632b726 (diff)
downloadmxe-f82fe5859a567fe5ce6457a96a62092d8f3573e3.zip
mxe-f82fe5859a567fe5ce6457a96a62092d8f3573e3.tar.gz
mxe-f82fe5859a567fe5ce6457a96a62092d8f3573e3.tar.bz2
Merge pull request #1410 from LuaAndC/doc-plugins-multi
plugins/README: clarify how to enable many plugins
-rw-r--r--plugins/README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/README.md b/plugins/README.md
index 803aab4..56b0b8b 100644
--- a/plugins/README.md
+++ b/plugins/README.md
@@ -16,7 +16,12 @@ MXE_PLUGIN_DIRS=foo/ make libpng
```
If needed, you can also pass multiple directories by separating them with a
-space: `MXE_PLUGIN_DIRS='foo1/ foo2/'`.
+space: `MXE_PLUGIN_DIRS='foo1/ foo2/'`. A plugin takes effect only if it is
+provided in `MXE_PLUGIN_DIRS`. If you run `make` multiple times, do not
+remove a plugin path from `MXE_PLUGIN_DIRS`, otherwise MXE will rebuild
+without the plugin. For example, if you want to build qbittorrent from
+`apps` plugin with gcc 6 provided by `gcc6` plugin, set `MXE_PLUGIN_DIRS`
+to 'plugins/gcc6 plugins/apps' and then run `make qbittorrent`.
For details on `*.mk` contents, please consult the contents of this directory
and `src/*.mk`.