summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2019-09-27 08:06:24 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2019-10-14 12:52:11 +0200
commit945d9a14097f51428b8f1711b2c3845ff820a7d1 (patch)
treeaee2400269419390d303b9a73dde696cd0b5b91c /commands
parentf2f6db2654d7a47d9335674b0250ed68b8c2ae74 (diff)
downloadbarebox-945d9a14097f51428b8f1711b2c3845ff820a7d1.tar.gz
barebox-945d9a14097f51428b8f1711b2c3845ff820a7d1.tar.xz
commands: ubsan: remove redundant depends
the config is already in an if COMMAND_SUPPORT clause, so no need to depend on it as well. Remove the redundancy. Signed-off-by: Ahmad Fatoum <ahmad@a3f.at> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands')
-rw-r--r--commands/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/Kconfig b/commands/Kconfig
index e03110fd46..6847a55e61 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -2144,7 +2144,7 @@ config CMD_SEED
config CMD_UBSAN
tristate "ubsan"
- depends on UBSAN && COMMAND_SUPPORT
+ depends on UBSAN
help
This is a test command for the undefined behavior sanitizer.
It triggers various undefined behavior, and detect it.