diff options
author | Norbert Leser <norbert.leser@nokia.com> | 2010-01-18 07:51:10 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2010-01-18 07:51:10 (GMT) |
commit | c8e54ce41201b38b9b3017c9b941129a924fe852 (patch) | |
tree | 16f7f350ed7cbaa48bede450b34d1eebf3cb125f /mkspecs | |
parent | ab124ac4c66cbfb22e8f25b5e77c4e7564acdd89 (diff) | |
download | Qt-c8e54ce41201b38b9b3017c9b941129a924fe852.zip Qt-c8e54ce41201b38b9b3017c9b941129a924fe852.tar.gz Qt-c8e54ce41201b38b9b3017c9b941129a924fe852.tar.bz2 |
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')
-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 f5caae0..c723d8c 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 |