aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/conf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c
index 0fdda9169308..0dc4a2c779b1 100644
--- a/scripts/kconfig/conf.c
+++ b/scripts/kconfig/conf.c
@@ -574,7 +574,9 @@ int main(int ac, char **av)
574 case alldefconfig: 574 case alldefconfig:
575 case randconfig: 575 case randconfig:
576 name = getenv("KCONFIG_ALLCONFIG"); 576 name = getenv("KCONFIG_ALLCONFIG");
577 if (name && (strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) { 577 if (!name)
578 break;
579 if ((strcmp(name, "") != 0) && (strcmp(name, "1") != 0)) {
578 if (conf_read_simple(name, S_DEF_USER)) { 580 if (conf_read_simple(name, S_DEF_USER)) {
579 fprintf(stderr, 581 fprintf(stderr,
580 _("*** Can't read seed configuration \"%s\"!\n"), 582 _("*** Can't read seed configuration \"%s\"!\n"),