1
0
mirror of https://github.com/0xAX/linux-insides.git synced 2025-01-18 19:51:10 +00:00

fix minor typos

This commit is contained in:
zhaoxiaoqiang 2015-07-30 16:49:33 +08:00
parent 0daf8bb152
commit bbc3931edb

View File

@ -116,7 +116,7 @@ obj := $(objtree)
export srctree objtree VPATH 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 ```Makefile
SUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \ SUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \