aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHegedüs Márton Csaba <[email protected]>2018-06-11 17:51:33 +0200
committerHegedüs Márton Csaba <[email protected]>2018-06-11 17:51:33 +0200
commit95e2dd470a32b28e71a4c1c0b6dd0cfbeea4dff7 (patch)
tree294695fcbb15fd18faf6f95c6fc68b3b39321c41
parent3cd24636f2ab1bf3da3d05d275eec8f0ae99c8ff (diff)
Corrected error message
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index cb2b158f2..b09f07bb5 100755
--- a/configure.py
+++ b/configure.py
@@ -1771,7 +1771,7 @@ def create_template_vars(source_paths, build_paths, options, modules, cc, arch,
if options.with_sysroot_dir == '':
return ''
if cc.add_sysroot_option == '':
- logging.error('This compiler doesn''t support --sysroot option')
+ logging.error("This compiler doesn't support --sysroot option")
return cc.add_sysroot_option + options.with_sysroot_dir
def ar_command():