diff options
author | Norbert Leser <norbert.leser@nokia.com> | 2010-01-18 08:51:10 +0100 |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-01-18 08:51:10 +0100 |
commit | c8e54ce41201b38b9b3017c9b941129a924fe852 (patch) | |
tree | 16f7f350ed7cbaa48bede450b34d1eebf3cb125f /mkspecs/features | |
parent | ab124ac4c66cbfb22e8f25b5e77c4e7564acdd89 (diff) | |
download | qt4-tools-c8e54ce41201b38b9b3017c9b941129a924fe852.tar.gz |
Symbian RnD SDK version pf_5250, wk48 and later (e.g., for ivalo target) has changed /epoc32/include layout, including a subdirectory called "platform".
Since that particular directory is used as test for detecting SDKs with "New SF structure", the test returns with false result in case of pf_5250 (which has old SF structure).
Change was made to test for a more obscure directory "mw" that appears the be present in new structure only.
Merge-request: 2281
Signed-off-by: axis <qt-info@nokia.com>
Diffstat (limited to 'mkspecs/features')
-rw-r--r-- | mkspecs/features/symbian/platform_paths.prf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/features/symbian/platform_paths.prf b/mkspecs/features/symbian/platform_paths.prf index f5caae0121..c723d8c916 100644 --- a/mkspecs/features/symbian/platform_paths.prf +++ b/mkspecs/features/symbian/platform_paths.prf @@ -59,7 +59,7 @@ exists($${EPOCROOT}epoc32/include/platform_paths.prf) { # No platform specific paths provided, use default paths - exists($${EPOCROOT}epoc32/include/platform) { # New SF structure + exists($${EPOCROOT}epoc32/include/mw) { # New SF structure # --------------------------------------- # Location, where the applications layer specific public headers are exported |