diff options
author | Frederic Roussel" <fr.frasc@gmail.com> | 2009-11-17 10:01:22 -0800 |
---|---|---|
committer | Frederic Roussel" <fr.frasc@gmail.com> | 2009-11-17 10:01:22 -0800 |
commit | 6d9e27b5b7123cda957621a7cc0ef6ae97c9a842 (patch) | |
tree | 05bbb0076c79473bab9308ef8bbf7f24df508830 /docs | |
parent | 7f6d11480011bfdf81ff60647b8263e81971c06d (diff) | |
download | crosstool-ng-6d9e27b5b7123cda957621a7cc0ef6ae97c9a842.tar.gz crosstool-ng-6d9e27b5b7123cda957621a7cc0ef6ae97c9a842.tar.bz2 crosstool-ng-6d9e27b5b7123cda957621a7cc0ef6ae97c9a842.zip |
Fix typos and adjust some documentation.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/overview.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/overview.txt b/docs/overview.txt index 11cd5b2e..94c1f864 100644 --- a/docs/overview.txt +++ b/docs/overview.txt @@ -366,22 +366,22 @@ Stopping and restarting a build | If you want to stop the build after a step you are debugging, you can pass the variable STOP to make: - ct-ng STOP=some_step + ct-ng build STOP=some_step Conversely, if you want to restart a build at a specific step you are debugging, you can pass the RESTART variable to make: - ct-ng RESTART=some_step + ct-ng build RESTART=some_step Alternatively, you can call make with the name of a step to just do that step: ct-ng libc_headers is equivalent to: - ct-ng RESTART=libc_headers STOP=libc_headers + ct-ng build RESTART=libc_headers STOP=libc_headers The shortcuts +step_name and step_name+ allow to respectively stop or restart at that step. Thus: - ct-ng +libc_headers and: ct-ng libc_headers+ + ct-ng +libc_headers and: ct-ng libc_headers+ are equivalent to: - ct-ng STOP=libc_headers and: ct-ng RESTART=libc_headers + ct-ng build STOP=libc_headers and: ct-ng build RESTART=libc_headers To obtain the list of acceptable steps, please call: ct-ng list-steps |