Commit 2c033e00 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen Committed by The Qt Project
Browse files

remove pointless extension check from qtPrepareTool()


we never call it with an explicit extension, so this only complicates
matters.

Change-Id: Ib15180130359bb9575bf5dda564f8b817431618f
Reviewed-by: default avatarJoerg Bornemann <joerg.bornemann@digia.com>
parent 6b38524b
No related merge requests found
Showing with 1 addition and 1 deletion
...@@ -196,7 +196,7 @@ defineTest(qtPrepareTool) { ...@@ -196,7 +196,7 @@ defineTest(qtPrepareTool) {
$$1 = $$[QT_HOST_BINS]/$$2 $$1 = $$[QT_HOST_BINS]/$$2
exists($$eval($$1).pl) { exists($$eval($$1).pl) {
$$1 = perl -w $$eval($$1).pl $$1 = perl -w $$eval($$1).pl
} else: contains(QMAKE_HOST.os, Windows):!contains($$1, .*\\.(exe|bat)$) { } else: contains(QMAKE_HOST.os, Windows) {
exists($$eval($$1).bat) { exists($$eval($$1).bat) {
$$1 = $$eval($$1).bat $$1 = $$eval($$1).bat
} else { } else {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment