summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-05-10 19:07:58 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-13 21:54:55 +0200
commit2b3055f7dc3d32664ff8932994ad17fa839c6b6c (patch)
treeb851e7680e323ec618d8a890f849fb1a566ad112 /mkspecs
parent2c033e00d4faae2fce37177f30a75d7bea8e2fec (diff)
remove qtPrepareTool()'s ability to run batch files
it was only meant to automatically support syncqt.bat, which is gone now. fwiw, invoking batch files from within msys Makefiles was broken to start with, as sh cannot directly run them. Change-Id: I435568c578ce79e46f4e230e985ca9a04b34ffff Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/qt_functions.prf6
1 files changed, 1 insertions, 5 deletions
diff --git a/mkspecs/features/qt_functions.prf b/mkspecs/features/qt_functions.prf
index a5285068ed..9ec22d57db 100644
--- a/mkspecs/features/qt_functions.prf
+++ b/mkspecs/features/qt_functions.prf
@@ -197,11 +197,7 @@ defineTest(qtPrepareTool) {
exists($$eval($$1).pl) {
$$1 = perl -w $$eval($$1).pl
} else: contains(QMAKE_HOST.os, Windows) {
- exists($$eval($$1).bat) {
- $$1 = $$eval($$1).bat
- } else {
- $$1 = $$eval($$1).exe
- }
+ $$1 = $$eval($$1).exe
} else:contains(QMAKE_HOST.os, Darwin) {
BUNDLENAME = $$eval($$1).app/Contents/MacOS/$$2
exists($$BUNDLENAME) {