diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-12-08 19:04:43 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-02-12 15:48:08 (GMT) |
commit | 167c864121eb36aa3ec8b1e869f95257cb4c3bcd (patch) | |
tree | f2b8ed534345fd17846534c7c75b46965dced2aa | |
parent | 4ac64f787a2d02b89312f2d20ef0b7bac590940d (diff) | |
download | Qt-167c864121eb36aa3ec8b1e869f95257cb4c3bcd.zip Qt-167c864121eb36aa3ec8b1e869f95257cb4c3bcd.tar.gz Qt-167c864121eb36aa3ec8b1e869f95257cb4c3bcd.tar.bz2 |
simplify
no need to recalculate a value which we have an own variable for
Reviewed-By: mariusSO
-rw-r--r-- | qmake/property.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/property.cpp b/qmake/property.cpp index 34368cd..cab034f 100644 --- a/qmake/property.cpp +++ b/qmake/property.cpp @@ -104,7 +104,7 @@ QMakeProperty::value(QString v, bool just_check) else if(v == "QT_INSTALL_DEMOS") return QLibraryInfo::location(QLibraryInfo::DemosPath); else if(v == "QMAKE_MKSPECS") - return qmake_mkspec_paths().join(Option::target_mode == Option::TARG_WIN_MODE ? ";" : ":"); + return qmake_mkspec_paths().join(Option::dirlist_sep); else if(v == "QMAKE_VERSION") return qmake_version(); #ifdef QT_VERSION_STR |