From 704a26335284ee7b74af393ee367f5545b775d5e Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Mon, 17 Apr 2017 11:46:10 +0300 Subject: [PATCH] Fix building if not found appropriate commit hash. --HG-- branch : release --- common.pri | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.pri b/common.pri index b92f339f3..2e40bfcf8 100644 --- a/common.pri +++ b/common.pri @@ -194,7 +194,7 @@ CONFIG(debug, debug|release){ isEmpty(DVCS_HESH){ DVCS_HESH=$$system("git rev-parse --short HEAD") isEmpty(DVCS_HESH){ - DVCS_HESH = "unknown" # if we can't find build revision left unknown. + DVCS_HESH = \\\"unknown\\\" # if we can't find build revision left unknown. } else { DVCS_HESH=\\\"Git:$${DVCS_HESH}\\\" }