File tree Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Expand file tree Collapse file tree 2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 19
19
#
20
20
# First, start with one of these build targets:
21
21
#
22
- # * all - The default. Builds a complete, bootstrapped compiler.
22
+ # * all - The default. Build a complete, bootstrapped compiler.
23
23
# `rustc` will be in `${target-triple}/stage2/bin/`. Run it
24
24
# directly from the build directory if you like. This also
25
25
# comes with docs in `doc/`.
26
26
#
27
27
# * check - Run the complete test suite
28
28
#
29
+ # * clean - Clean the build repertory. It is advised to run this
30
+ # command if you want to build Rust again, after an update
31
+ # of the git repository.
32
+ #
29
33
# * install - Install Rust. Note that installation is not necessary
30
34
# to use the compiler.
31
35
#
103
107
#
104
108
# </tips>
105
109
#
106
- # <nittygritty >
110
+ # <nitty-gritty >
107
111
#
108
112
# # The Rust Build System
109
113
#
152
156
# libraries are managed and versioned without polluting the common
153
157
# areas of the filesystem.
154
158
#
155
- # General rust binaries may stil live in the host bin directory; they
159
+ # General rust binaries may still live in the host bin directory; they
156
160
# will just link against the libraries in the target lib directory.
157
161
#
158
162
# Admittedly this is a little convoluted.
159
163
#
160
- # </nittygritty >
164
+ # </nitty-gritty >
161
165
#
162
166
163
167
# #####################################################################
Original file line number Diff line number Diff line change @@ -446,13 +446,13 @@ all: $(ALL_TARGET_RULES) $(GENERATED) docs
446
446
# $(1) is the name of the doc <section> in Makefile.in
447
447
# pick everything between tags | remove first line | remove last line
448
448
# | remove extra (?) line | strip leading `#` from lines
449
- SHOW_DOCS = $(Q ) awk '/$(1 ) /,/<\/$(1 ) >/' $(S ) /Makefile.in | sed '1d' | sed '$$d' | sed 's/^\# \?//'
449
+ SHOW_DOCS = $(Q ) awk '/< $(1 ) > /,/<\/$(1 ) >/' $(S ) /Makefile.in | sed '1d' | sed '$$d' | sed 's/^\# \?//'
450
450
451
451
help :
452
452
$(call SHOW_DOCS,help)
453
453
454
- hot- tips :
455
- $(call SHOW_DOCS,hottips )
454
+ tips :
455
+ $(call SHOW_DOCS,tips )
456
456
457
457
nitty-gritty :
458
- $(call SHOW_DOCS,nittygritty )
458
+ $(call SHOW_DOCS,nitty-gritty )
You can’t perform that action at this time.
0 commit comments