summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2016-07-25 10:14:15 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-07-25 10:14:18 +0200
commit04d6b35b5d9a9ce5583ed04e8c7b6cf37d86fed0 (patch)
tree7f1311f18c2fae712018d05b0dc7994b9918f586 /common
parent75926bc33d2ec53e7b81cdfd68b66725fd8cd5ac (diff)
downloadbarebox-04d6b35b5d9a9ce5583ed04e8c7b6cf37d86fed0.tar.gz
barebox-04d6b35b5d9a9ce5583ed04e8c7b6cf37d86fed0.tar.xz
lib: Add Kconfig symbol for FNMATCH
fnmatch is useful on its own, so make a separate Kconfig symbol and select it from GLOB. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig
index 6ce2a76afa..a85ee8daca 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -421,6 +421,7 @@ config MAXARGS
config GLOB
bool
+ select FNMATCH
prompt "globbing support"
help
If you want to use wildcards like * or ? say y here.