@@ -353,7 +353,7 @@ foo.in
353
353
<varname >NUM_CPU</varname > environment variable.
354
354
(This is one of the exception cases
355
355
where the string is spelled differently from
356
- the from command-line option.
356
+ the command-line option.
357
357
The string for fetching or setting the <option >--jobs</option >
358
358
value is <parameter >num_jobs</parameter >
359
359
for historical reasons.)
@@ -387,9 +387,9 @@ foo.in
387
387
But any explicit
388
388
<option >-j</option > or <option >--jobs</option >
389
389
value you specify on the command line is used first,
390
- regardless of whether or not
390
+ whether
391
391
the <envar >NUM_CPU</envar > environment
392
- variable is set:
392
+ variable is set or not :
393
393
394
394
</para >
395
395
@@ -753,7 +753,7 @@ foo.in
753
753
(see the immediately following sections for details).
754
754
Thus, they must be collected before &SConscript; processing
755
755
takes place. &AddOption; calls do provide the
756
- the necessary instructions to resolve the ambiguity,
756
+ necessary instructions to resolve the ambiguity,
757
757
but as they appear in &SConscript; files,
758
758
&SCons; does not have the information early enough,
759
759
and unexpected things may happen,
@@ -916,7 +916,7 @@ prog.c
916
916
917
917
<para >
918
918
919
- To accomodate these requirements,
919
+ To accommodate these requirements,
920
920
&SCons; also provides an &ARGLIST; variable
921
921
that gives you direct access to build variable
922
922
settings from the command line,
@@ -1000,7 +1000,7 @@ prog.c
1000
1000
and apply the values to a &consvar; .
1001
1001
To help with this,
1002
1002
&SCons; provides a &Variables; container class to
1003
- hold defintions of such build variables,
1003
+ hold definitions of such build variables,
1004
1004
and a mechanism to apply the
1005
1005
build variables to a &consenv; .
1006
1006
This allows you to control how the build variables affect
@@ -1101,7 +1101,7 @@ bar.c
1101
1101
1102
1102
</section >
1103
1103
1104
- <section id =" secr -variables-help" >
1104
+ <section id =" sec -variables-help" >
1105
1105
<title >Providing Help for Command-Line Build Variables</title >
1106
1106
1107
1107
<para >
@@ -1161,7 +1161,7 @@ Help(vars.GenerateHelpText(env))
1161
1161
1162
1162
<para >
1163
1163
1164
- Being able to to specify the
1164
+ Being able to specify the
1165
1165
value of a build variable on the command line
1166
1166
is useful,
1167
1167
but can still become tedious
@@ -1271,7 +1271,7 @@ vars = Variables('custom.py', ARGUMENTS)
1271
1271
1272
1272
</para >
1273
1273
1274
- <!-- TODO: maybe show a variable used to select between vairable scripts? -->
1274
+ <!-- TODO: maybe show a variable used to select between variable scripts? -->
1275
1275
1276
1276
</section >
1277
1277
@@ -1298,11 +1298,11 @@ vars = Variables('custom.py', ARGUMENTS)
1298
1298
It is often handy to be able to specify a
1299
1299
variable that controls a simple Boolean variable
1300
1300
with a &true; or &false; value.
1301
- It would be even more handy to accomodate
1301
+ It would be even more handy to accommodate
1302
1302
different preferences for how to represent
1303
1303
&true; or &false; values.
1304
1304
The &BoolVariable; function
1305
- makes it easy to accomodate these
1305
+ makes it easy to accommodate these
1306
1306
common representations of
1307
1307
&true; or &false; .
1308
1308
@@ -2005,7 +2005,7 @@ vars = Variables()
2005
2005
vars.AddVariables(
2006
2006
('RELEASE', 'Set to 1 to build for release', 0),
2007
2007
('CONFIG', 'Configuration file', '/etc/my_config'),
2008
- BoolVariable('warnings', help='compilation with -Wall and similiar ', default=True),
2008
+ BoolVariable('warnings', help='compilation with -Wall and similar ', default=True),
2009
2009
EnumVariable(
2010
2010
'debug',
2011
2011
help='debug output and symbols',
@@ -2173,7 +2173,7 @@ foo.c
2173
2173
2174
2174
Now, running &SCons; with the default target
2175
2175
works as usual,
2176
- but explicity specifying the &bar; target
2176
+ but explicitly specifying the &bar; target
2177
2177
on the command line generates the warning message:
2178
2178
2179
2179
</para >
@@ -2430,7 +2430,7 @@ prog1.c
2430
2430
2431
2431
<para >
2432
2432
2433
- (Keep in mind that all of the manipulation of the
2433
+ (Keep in mind that the manipulation of the
2434
2434
&DEFAULT_TARGETS; list takes place during the
2435
2435
first phase when &SCons; is reading up the &SConscript; files,
2436
2436
which is obvious if
0 commit comments