diff options
Diffstat (limited to 'scripts/config/zconf.l')
-rw-r--r-- | scripts/config/zconf.l | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/config/zconf.l b/scripts/config/zconf.l index bce3da6653..3aef45983a 100644 --- a/scripts/config/zconf.l +++ b/scripts/config/zconf.l @@ -345,6 +345,13 @@ void zconf_nextfile(const char *name) int i; err = glob(name, GLOB_ERR | GLOB_MARK, NULL, &gl); + + /* ignore wildcard patterns that return no result */ + if (err == GLOB_NOMATCH && strchr(name, '*')) { + err = 0; + gl.gl_pathc = 0; + } + if (err) { const char *reason = "unknown error"; |