summaryrefslogtreecommitdiffstats
path: root/qmake/option.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2009-06-07 13:09:51 (GMT)
committeraxis <qt-info@nokia.com>2009-10-23 09:25:55 (GMT)
commita9c7246c6bfddbc69acceb81134a7856e2855dcd (patch)
tree84a56213be9b4d2b65cf2f2a205cbe97a0ce045e /qmake/option.cpp
parent8b8bbf397114db7eac0873ba622505d2d75c9dfa (diff)
downloadQt-a9c7246c6bfddbc69acceb81134a7856e2855dcd.zip
Qt-a9c7246c6bfddbc69acceb81134a7856e2855dcd.tar.gz
Qt-a9c7246c6bfddbc69acceb81134a7856e2855dcd.tar.bz2
Fix symbian builds on Linux.
Avoid the use of cmd.exe syntax through the use of Option::shellPath instead of isForSymbian() in qmake.
Diffstat (limited to 'qmake/option.cpp')
-rw-r--r--qmake/option.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/option.cpp b/qmake/option.cpp
index c503b08..646086f 100644
--- a/qmake/option.cpp
+++ b/qmake/option.cpp
@@ -389,6 +389,7 @@ Option::init(int argc, char **argv)
Option::shellPath = detectShellPath();
#else
Option::dirlist_sep = ":";
+ Option::shellPath = QStringList("sh");
#endif
Option::sysenv_mod = "QMAKE_ENV_";
Option::field_sep = ' ';