summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@digia.com>2014-10-28 13:49:23 +0100
committerMichael Bruning <michael.bruning@digia.com>2014-10-28 13:59:02 +0100
commit7356189d9680f1697f219173b771298238567d15 (patch)
tree62795ebe1c34f56136cc2217d99f9eac3e57bcd0 /tools
parent7435ac7bebdec419702248d4ef92caa80d052b19 (diff)
Use the correct comment syntax.
This fixes 7639513f94fe45b5202349d2891e46b2295606a0. Change-Id: I512ca97d8b4fc8b7c48f03ab32d476bb3a791157 Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com> Reviewed-by: Zeno Albisser <zeno.albisser@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmake/mkspecs/features/functions.prf2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index 93b5eec98..0d15d0761 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -17,7 +17,7 @@ defineTest(isPythonVersionSupported) {
}
defineTest(isGCCVersionSupported) {
- // The below will work for gcc 4.6 and up and also match gcc 5
+ # The below will work for gcc 4.6 and up and also match gcc 5
greaterThan(QT_GCC_MINOR_VERSION, 5):return(true)
greaterThan(QT_GCC_MAJOR_VERSION, 4):return(true)
return(false)