menuconfig: allow wildcard includes to return no match (#6339)
authorFelix Fietkau <nbd@openwrt.org>
Fri, 11 Dec 2009 04:41:56 +0000 (04:41 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 11 Dec 2009 04:41:56 +0000 (04:41 +0000)
SVN-Revision: 18743

scripts/config/lex.zconf.c_shipped
scripts/config/zconf.l

index 42bcdd45620a6dbbbb02b63c6a0f08419d479aff..31637377aba1117125b3ebb574770daa4f0e923b 100644 (file)
@@ -2268,7 +2268,10 @@ void zconf_nextfile(const char *name)
        struct buffer *buf;
 
        retval = glob(name, GLOB_ERR | GLOB_MARK, NULL, &files);
-       if (retval == GLOB_NOSPACE || retval == GLOB_ABORTED || retval == GLOB_NOMATCH) {
+       if (retval == GLOB_NOMATCH)
+               return;
+
+       if (retval == GLOB_NOSPACE || retval == GLOB_ABORTED) {
                printf("%s:%d: glob failed: %s \"%s\"\n", zconf_curname(), zconf_lineno(),
                        retval == GLOB_NOSPACE ? "failed to allocate memory" :
                                retval == GLOB_ABORTED ? "read error" : "no match",
index 7acb60f8e70d264e1349baf65f1e2ccdf2a6dd61..71107a56e75c4e8211a8330a88593d78bf531be8 100644 (file)
@@ -302,7 +302,10 @@ void zconf_nextfile(const char *name)
        struct buffer *buf;
 
        retval = glob(name, GLOB_ERR | GLOB_MARK, NULL, &files);
-       if (retval == GLOB_NOSPACE || retval == GLOB_ABORTED || retval == GLOB_NOMATCH) {
+       if (retval == GLOB_NOMATCH)
+               return;
+
+       if (retval == GLOB_NOSPACE || retval == GLOB_ABORTED) {
                printf("%s:%d: glob failed: %s \"%s\"\n", zconf_curname(), zconf_lineno(),
                        retval == GLOB_NOSPACE ? "failed to allocate memory" :
                                retval == GLOB_ABORTED ? "read error" : "no match",