menuconfig: let make not report error when not save configuration
authorWang YanQing <udknight@gmail.com>
Thu, 12 Jan 2012 03:31:32 +0000 (11:31 +0800)
committerMichal Marek <mmarek@suse.cz>
Sat, 14 Jan 2012 20:54:32 +0000 (21:54 +0100)
I find every time when I choice the 'NO' button at the dialog
which let me choice whether to save the configuration before exit
menuconfig, it always report the blow:

" GEN     /mnt/sda7/home/build/test/Makefile
  HOSTCC  scripts/kconfig/mconf.o
  HOSTLD  scripts/kconfig/mconf
scripts/kconfig/mconf Kconfig

Your configuration changes were NOT saved.

make[2]: *** [menuconfig] Error 1
make[1]: *** [menuconfig] Error 2
make: *** [sub-make] Error 2 "

This patch repair it.

Signed-off-by: Wang YanQing <udknight@gmail.com>
Acked-by: Davidlohr Bueso <dave@gnu.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
scripts/kconfig/mconf.c

index 19e200d9112091fc3ddfe5aac59f94b32b38c4dc..86cd1ea355792148dcda2d48f9554ca7edeb99f2 100644 (file)
@@ -830,6 +830,7 @@ static int handle_exit(void)
                fprintf(stderr, _("\n\n"
                                  "Your configuration changes were NOT saved."
                                  "\n\n"));
+               res = 0;
        }
 
        return res;
This page took 0.026811 seconds and 5 git commands to generate.