diff options
author | Hegedüs Márton Csaba <[email protected]> | 2018-06-11 17:51:33 +0200 |
---|---|---|
committer | Hegedüs Márton Csaba <[email protected]> | 2018-06-11 17:51:33 +0200 |
commit | 95e2dd470a32b28e71a4c1c0b6dd0cfbeea4dff7 (patch) | |
tree | 294695fcbb15fd18faf6f95c6fc68b3b39321c41 | |
parent | 3cd24636f2ab1bf3da3d05d275eec8f0ae99c8ff (diff) |
Corrected error message
-rwxr-xr-x | configure.py | 2 |
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(): |