aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-01-19 05:12:01 -0800
committerLinus Torvalds <torvalds@home.osdl.org>2004-01-19 05:12:01 -0800
commit6dd6551ee50466dbbdcd111a34f38037038bef2e (patch)
tree6ad4f465b83c704689aa5a76e3fcd809393396eb /scripts
parentded29eb19869805d3ea7cfb4a6257f61f6873bab (diff)
downloadhistory-6dd6551ee50466dbbdcd111a34f38037038bef2e.tar.gz
[PATCH] kconfig: fix menuconfig exit code
From: Sam Ravnborg <sam@ravnborg.org> If the user decides to not write the config file out, menuconfig exits with a non-zero code. This causes make to allege that there was an error.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/mconf.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c
index ca8b1ce356a66..1a8e7c4144453 100644
--- a/scripts/kconfig/mconf.c
+++ b/scripts/kconfig/mconf.c
@@ -800,7 +800,6 @@ int main(int ac, char **av)
fprintf(stderr, "\n\n"
"Your kernel configuration changes were NOT saved."
"\n\n");
- return 1;
}
return 0;