mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-04-11 16:37:45 -04:00
make: fix '--plugins=' option not being respected in all cases
If the list of plugins given to configure did not include
a subdir-based plugin, then all subdir-based plugins would
be built (since SELECTED_PLUGINS_SUBDIRS is empty then).
To prevent this issue use an explicit value ('DEFAULT') to
signal that we want to build the standard set of plugins.
Change-Id: I42d9dc8d754ed9ac1cd4b5c62c0a106ca3dfcd91
This commit is contained in:
parent
a5853b1173
commit
d6d4ff7af2
2 changed files with 8 additions and 4 deletions
4
tools/configure
vendored
4
tools/configure
vendored
|
|
@ -4848,6 +4848,10 @@ if [ -n "$ARG_PLUGINS" ]; then
|
|||
echo "Warning: Plugin '$p' found neither as file nor directory in $chk_plugin_dir. Use ':' as the separator."
|
||||
fi
|
||||
done
|
||||
else
|
||||
# Build the default set of plugins
|
||||
selected_src="DEFAULT"
|
||||
selected_subdirs="DEFAULT"
|
||||
fi
|
||||
|
||||
### end of cmdline
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue