summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-12-19 19:21:10 -0800
committerMichael Forney <mforney@mforney.org>2019-12-20 18:50:02 -0800
commit46df03dc0f76628f569d63c08cc42f2e20062672 (patch)
treeaadddfe5550f1edb3d7de3e4aa79e9e097a047a7
parentcda76002257d56ffedbf8d28211cfd66a7226e73 (diff)
Shell quote errorbuild message
Otherwise, it may contain characters like '(', producing /bin/sh: syntax error: `(' unexpected instead of the error message. Change-Id: Ia583eb298d88c35923892c8b68782850acc6c69d Reviewed-by: Michal Klocek <michal.klocek@qt.io>
-rw-r--r--src/src.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src.pro b/src/src.pro
index de88878a6..e32d915d6 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -40,7 +40,7 @@ qtConfig(build-qtwebengine-core):qtConfig(webengine-core-support) {
!qtConfig(webengine-core-support): qtConfig(build-qtwebengine-core) {
!qtwebengine_makeCheckError():!isEmpty(skipBuildReason):!build_pass {
- errorbuild.commands = @echo Modules will not be built. $${skipBuildReason}
+ errorbuild.commands = @echo $$shell_quote(Modules will not be built. $${skipBuildReason})
errorbuild.CONFIG = phony
QMAKE_EXTRA_TARGETS += errorbuild
first.depends += errorbuild