diff options
author | Simon Dawson <spdawson@gmail.com> | 2012-11-16 04:54:19 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-16 22:24:42 +0100 |
commit | ecd23535551d0cd8ae265d75eadc43e88c580fc0 (patch) | |
tree | 2d53c83a2853c3bcd7b9b3da7c951b8a84a12875 /docs/manual/make-tips.txt | |
parent | 30d99041ce5f32c30c470c3b114d612ba26e49ef (diff) | |
download | buildroot-novena-ecd23535551d0cd8ae265d75eadc43e88c580fc0.tar.gz buildroot-novena-ecd23535551d0cd8ae265d75eadc43e88c580fc0.zip |
manual: minor tweaks
Minor grammatical and spelling tweaks to the manual content.
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'docs/manual/make-tips.txt')
-rw-r--r-- | docs/manual/make-tips.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/manual/make-tips.txt b/docs/manual/make-tips.txt index 5b00536be..25c4e3517 100644 --- a/docs/manual/make-tips.txt +++ b/docs/manual/make-tips.txt @@ -4,18 +4,18 @@ 'make' tips ----------- -Because Buildroot is a set of Makefiles and patches, there are few -things useful to know, such as: +Because Buildroot is a set of Makefiles and patches, there are a few +things that are useful to know, such as: +make *config+ commands offer a search tool. Read the help message in -the different frontend menu to know how to use it: +the different frontend menus to know how to use it: * in _menuconfig_, search tool is called by pressing +/+; * in _xconfig_, search tool is called by pressing +ctrl+ + +f+. -The result of the search show the help message of the matching items. +The result of the search shows the help message of the matching items. -Display all command executed by make: +Display all commands executed by make: -------------------- $ make V=0|1 <target> @@ -54,5 +54,5 @@ Delete all build products as well as the configuration: -------------------- Note that if +ccache+ is enabled, running +make clean|distclean+ does -not empty the cache of compiler used by Buildroot. To delete it, refer +not empty the compiler cache used by Buildroot. To delete it, refer to xref:ccache[]. |