diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-02-22 08:44:32 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-02-22 08:58:17 (GMT) |
commit | a8af0c1aba81716bd0f609b1d9afe5c10951b303 (patch) | |
tree | 772114d001fc761f84b43a0f4ad19a3889b4e3d0 /qmake/generators/symbian/symmake.h | |
parent | 1eb303d4f14dfcffcca3f11cacca7a73f1e53342 (diff) | |
download | Qt-a8af0c1aba81716bd0f609b1d9afe5c10951b303.zip Qt-a8af0c1aba81716bd0f609b1d9afe5c10951b303.tar.gz Qt-a8af0c1aba81716bd0f609b1d9afe5c10951b303.tar.bz2 |
Changed canonical paths to absolute paths in symmake.
Canonical paths were resolving to empty if the paths didn't exist,
which causes problems for clean platform builds. Using absolute paths
instead will generate all required paths.
This will cause a minor inconvenience of warnings about some nonexistent
paths during makefile generation phase of abld builds, but this is
unavoidable. Sbsv2 builds do not display any warnings.
Reviewed-by: Janne Anttila
Diffstat (limited to 'qmake/generators/symbian/symmake.h')
-rw-r--r-- | qmake/generators/symbian/symmake.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/symbian/symmake.h b/qmake/generators/symbian/symmake.h index 77d61da..542284c 100644 --- a/qmake/generators/symbian/symmake.h +++ b/qmake/generators/symbian/symmake.h @@ -84,7 +84,7 @@ protected: void removeSpecialCharacters(QString& str); QString fixPathForMmp(const QString& origPath, const QDir& parentDir); - QString canonizePath(const QString& origPath); + QString absolutizePath(const QString& origPath); virtual bool writeMakefile(QTextStream &t); void generatePkgFile(const QString &iconFile, DeploymentList &depList); |