diff -ur config-kernel-0.3.3.orig/config_kernel/ck_actions.py config-kernel-0.3.3/config_kernel/ck_actions.py --- config-kernel-0.3.3.orig/config_kernel/ck_actions.py 2004-09-02 22:42:59.616833240 +0200 +++ config-kernel-0.3.3/config_kernel/ck_actions.py 2004-09-02 22:49:43.099494552 +0200 @@ -108,7 +108,7 @@ warn ("points to a full kernel tree") sys.exit(2) - info("Backing up original makefile to /usr/src/linux/Makefile.orig") + info("Backing up original Makefile to /usr/src/linux/Makefile.orig") copy("/usr/src/linux/Makefile","/usr/src/linux/Makefile.orig") # Inform them what's going on @@ -214,7 +214,7 @@ config = "" configtemp = "" - info("Running 'make mrproper to clean your kernel tree (This make take a while)") + info("Running 'make mrproper' to clean your kernel tree (This may take a while)") os.chdir(path) tochild, fromchild, childerror = os.popen3("make mrproper") error = childerror.readlines() @@ -237,7 +237,7 @@ os.mkdir(outputpath) if config: - info("Copying your .config into " + outputpath) + info("Copying your .config to " + outputpath) copy(os.path.join(gettempdir(), ".config"),outputpath) def makekoutputCheck(path): @@ -278,7 +278,7 @@ if kv: outputdir = os.path.join(outputdir, kv) else: - warn ("Unable to determine the kernel version fount at " + path) + warn ("Unable to determine the kernel version found at " + path) sys.exit(2) if os.path.isdir(outputdir):