diff options
author | Thomas Zander <t.zander@nokia.com> | 2010-04-14 13:10:55 (GMT) |
---|---|---|
committer | Thomas Zander <t.zander@nokia.com> | 2010-04-16 12:04:24 (GMT) |
commit | 1e0cb74f433083d2cafa21da3e34e87a35838b90 (patch) | |
tree | 762258c6d18a7b5ad48cb540ae087839f3b0d008 /mkspecs/features | |
parent | d19f732ba223871e35c02a903c7a10f5ea62c01b (diff) | |
download | Qt-1e0cb74f433083d2cafa21da3e34e87a35838b90.zip Qt-1e0cb74f433083d2cafa21da3e34e87a35838b90.tar.gz Qt-1e0cb74f433083d2cafa21da3e34e87a35838b90.tar.bz2 |
Fix check for arm based systems
The lib is only on the phone, so check the dso file instead.
Diffstat (limited to 'mkspecs/features')
-rw-r--r-- | mkspecs/features/symbian/stl.prf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkspecs/features/symbian/stl.prf b/mkspecs/features/symbian/stl.prf index 85c758a..3091fce 100644 --- a/mkspecs/features/symbian/stl.prf +++ b/mkspecs/features/symbian/stl.prf @@ -21,8 +21,8 @@ STL_LIB = -llibstdcppv5.dll STL_MMP_RULE = "STDCPP" # Fall back to old implementation if that is the only one that is found -exists($${EPOCROOT}epoc32/release/armv5/urel/libstdcpp.dll)|exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcpp.dll) { - !exists($${EPOCROOT}epoc32/release/armv5/urel/libstdcppv5.dll):!exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcppv5.dll) { +exists($${EPOCROOT}epoc32/release/armv5/lib/libstdcpp.dso)|exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcpp.dll) { + !exists($${EPOCROOT}epoc32/release/armv5/lib/libstdcppv5.dso):!exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcppv5.dll) { STL_LIB = -llibstdcpp.dll STL_MMP_RULE = } |