Skip to content

Commit 4830aa2

Browse files
committed
fixed usage of qmake message function
1 parent ff57bec commit 4830aa2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/linuxdeployqt/linuxdeployqt.pro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ load(qt_tool)
1212

1313
HEADERS += shared.h
1414
SOURCES += main.cpp \
15-
shared.cpp
15+
shared.cpp
1616

1717
DEFINES -= QT_USE_QSTRINGBUILDER #leads to compile errors if not disabled
1818

@@ -27,10 +27,10 @@ DEFINES += BUILD_DATE="'\"$(shell env LC_ALL=C date -u '+%Y-%m-%d %H:%M:%S %Z')\
2727
_BUILD_NUMBER = $$(TRAVIS_BUILD_NUMBER)
2828

2929
isEmpty(_BUILD_NUMBER) {
30-
message(Not building on Travis CI, tagging build as local dev build)
30+
message("Not building on Travis CI, tagging build as local dev build")
3131
DEFINES += BUILD_NUMBER="'\"<local dev build>\"'"
3232
} else {
33-
message(Building on Travis CI build, build number $$_BUILD_NUMBER)
33+
message("Building on Travis CI build, build number $$_BUILD_NUMBER")
3434
DEFINES += BUILD_NUMBER="'\"$$_BUILD_NUMBER\"'"
3535
}
3636

0 commit comments

Comments
 (0)