summaryrefslogtreecommitdiffstats
path: root/configure.pri
diff options
context:
space:
mode:
Diffstat (limited to 'configure.pri')
-rw-r--r--configure.pri8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.pri b/configure.pri
index 96b0d4ea56..526a4bb711 100644
--- a/configure.pri
+++ b/configure.pri
@@ -15,10 +15,10 @@ defineTest(qtConfCommandline_cxxstd) {
qtConfCommandlineSetInput("c++14", "yes")
qtConfCommandlineSetInput("c++1z", "yes")
} else {
- error("Invalid argument $$val to command line parameter $$arg")
+ qtConfAddError("Invalid argument $$val to command line parameter $$arg")
}
} else {
- error("Missing argument to command line parameter $$arg")
+ qtConfAddError("Missing argument to command line parameter $$arg")
}
}
@@ -36,10 +36,10 @@ defineTest(qtConfCommandline_sanitize) {
} else: equals(val, "undefined") {
qtConfCommandlineSetInput("sanitize_undefined", "yes")
} else {
- error("Invalid argument $$val to command line parameter $$arg")
+ qtConfAddError("Invalid argument $$val to command line parameter $$arg")
}
} else {
- error("Missing argument to command line parameter $$arg")
+ qtConfAddError("Missing argument to command line parameter $$arg")
}
}