From bbc3931edb4b10ed84c41762c8da57ed727c7c22 Mon Sep 17 00:00:00 2001 From: zhaoxiaoqiang Date: Thu, 30 Jul 2015 16:49:33 +0800 Subject: [PATCH] fix minor typos --- Misc/how_kernel_compiled.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/how_kernel_compiled.md b/Misc/how_kernel_compiled.md index ee9097b..022dfdc 100644 --- a/Misc/how_kernel_compiled.md +++ b/Misc/how_kernel_compiled.md @@ -116,7 +116,7 @@ obj := $(objtree) export srctree objtree VPATH ``` -That tells to `Makefile` that source tree of the Linux kernel will be in the current directory where `make` command was executed. After this we set `objtree` and other variables to this directory and export these variables. The next step is the getting value for the `SUBARCH` variable that will represent tewhat the underlying archicecture is: +That tells to `Makefile` that source tree of the Linux kernel will be in the current directory where `make` command was executed. After this we set `objtree` and other variables to this directory and export these variables. The next step is the getting value for the `SUBARCH` variable that will represent what the underlying architecture is: ```Makefile SUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \