aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorFelix Yan <[email protected]>2017-12-06 13:28:01 +0800
committerGitHub <[email protected]>2017-12-06 13:28:01 +0800
commit353f7bb4dcca9053f10b0dfc32c6e291bcf2ecbf (patch)
tree53625357f03ca0aaa5c83041b80c26067e64441d /configure.py
parent4564871b18ddbc4f08dc71607b1acc05541444ba (diff)
Fix typos in configure.py
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py
index fd9545d5c..ffc675f2c 100755
--- a/configure.py
+++ b/configure.py
@@ -2385,7 +2385,7 @@ class ModulesChooser(object):
def choose_link_method(options):
"""
- Choose the link method based on system availablity and user request
+ Choose the link method based on system availability and user request
"""
req = options.link_method
@@ -3038,7 +3038,7 @@ def validate_options(options, info_os, info_cc, available_module_policies):
raise UserError('Bad value to --build-fuzzers')
if options.build_fuzzers == 'klee' and options.os != 'llvm':
- raise UserError('Building for KLEE requires targetting LLVM')
+ raise UserError('Building for KLEE requires targeting LLVM')
if options.build_static_lib is False and options.build_shared_lib is False:
raise UserError('With both --disable-static-library and --disable-shared-library, nothing to do')