From 33a65822956c08e38463a69e0479b8a0b632b726 Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Wed, 29 Jun 2016 01:52:04 +0300 Subject: [PATCH] plugins/README: clarify how to enable many plugins fix #1407 --- plugins/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/README.md b/plugins/README.md index 803aab47..56b0b8b1 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`.