Fix building if not found appropriate commit hash.

--HG--
branch : release
master
Roman Telezhynskyi 2017-04-17 11:46:10 +03:00
parent 92601395e8
commit 704a263352
1 changed files with 1 additions and 1 deletions

View File

@ -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}\\\"
}