diff options
author | Björn Jacke <bj@sernet.de> | 2019-10-26 02:41:09 +0200 |
---|---|---|
committer | Bjoern Jacke <bjacke@samba.org> | 2019-10-31 00:43:36 +0000 |
commit | c2794780ad09b0fa9d63e4ad31a8ae3c67fa453d (patch) | |
tree | 41c6876276465c33b9a68feb08b368e1532ac616 /dynconfig | |
parent | 2b060f935026e68d7ad7a5d4e614452a5119dae8 (diff) | |
download | samba-c2794780ad09b0fa9d63e4ad31a8ae3c67fa453d.tar.gz |
dynconfig/wscript: typo fixes
Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'dynconfig')
-rw-r--r-- | dynconfig/wscript | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dynconfig/wscript b/dynconfig/wscript index 5a0ce6d956a..440ecd7f1b4 100644 --- a/dynconfig/wscript +++ b/dynconfig/wscript @@ -66,12 +66,12 @@ class SambaIndentedHelpFormatter (optparse.IndentedHelpFormatter): # 'OPTION' - the configure option to overwrite the default (optional) # 'HELPTEXT' - the help text of the configure option (optional) # -# 'OVERWRITE' - The option referrs to itself and was already from +# 'OVERWRITE' - The option refers to itself and was already from # the basic GNU options from the gnu_dirs tool. # We may overwrite the related path. (Default: False) # -# 'DELAY' - The option referrs to other options in the dynconfig list. -# We delay the intialization into a later stage. This +# 'DELAY' - The option refers to other options in the dynconfig list. +# We delay the initalization into a later stage. This # makes sure the recursion works. (Default: False) # dynconfig = { @@ -341,7 +341,7 @@ def configure(conf): # defaults stage 1 after the explicit block for varname in dynconfig.keys(): if 'DELAY' in dynconfig[varname] and dynconfig[varname]['DELAY']: - # this option referrs to other options, + # this option refers to other options, # so it needs to wait for stage 2. continue value = EXPAND_VARIABLES(conf, dyn_vars[varname]) @@ -361,7 +361,7 @@ def configure(conf): # only overwrite if not specified explicitly on the command line conf.env[varname] = value - # display the expanded pathes for the user + # display the expanded paths for the user for varname in dynconfig.keys(): value = conf.env[varname] conf.start_msg("Dynconfig[%s]: " % (varname)) |