Commit 309b3fdc authored by Adam Kallai's avatar Adam Kallai
Browse files

Fixing quotation mark usage for Windows


The Windows command shell try to interpret the single quotation mark
as a command.

Change-Id: I4dc4382bdbe0c90565f6ac56c33a80971669344c
Reviewed-by: default avatarAndras Becsi <andras.becsi@digia.com>
Reviewed-by: default avatarMichael Bruning <michael.bruning@digia.com>
Showing with 2 additions and 2 deletions
......@@ -10,8 +10,8 @@ defineTest(isPlatformSupported) {
}
defineTest(isPythonVersionSupported) {
python_major_version = $$system("python -c 'import sys; print sys.version_info.major'")
python_minor_version = $$system("python -c 'import sys; print sys.version_info.minor'")
python_major_version = $$system('python -c "import sys; print sys.version_info.major"')
python_minor_version = $$system('python -c "import sys; print sys.version_info.minor"')
greaterThan(python_major_version, 1): greaterThan(python_minor_version, 6): return(true)
return(false)
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment