Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. diff --git a/mkspecs/features/symbian/symbian_building.prf b/mkspecs/features/symbian/symbian_building.prf
  2. index f3b6c25..0d2e053 100644
  3. --- a/mkspecs/features/symbian/symbian_building.prf
  4. +++ b/mkspecs/features/symbian/symbian_building.prf
  5. @@ -51,7 +51,7 @@ defineReplace(processSymbianLibrary) {
  6. }
  7.  
  8. # This part turn "-llibc" into "libc.dso", and moves -L entries to QMAKE_LIBDIR.
  9. -libsToProcess = LIBS QMAKE_LIBS
  10. +libsToProcess = LIBS LIBS_PRIVATE QMAKE_LIBS
  11. for(libToProcess, libsToProcess) {
  12. qt_libraries = $$split($$libToProcess, " ")
  13. eval($$libToProcess =)
  14. @@ -90,8 +90,8 @@ count(splitVersion, 0) {
  15. } else {
  16. count(splitVersion, 3) {
  17. hexVersion = $$system("sh -c 'printf %02x $$member(splitVersion, 0)'")
  18. - hexPart2 = $$system("sh -c 'printf %02x $$member(splitVersion, 1)'")"
  19. - hexPart2 = $$hexPart2$$system("sh -c 'printf %02x $$member(splitVersion, 2)'")"
  20. + hexPart2 = $$system("sh -c 'printf %02x $$member(splitVersion, 1)'")
  21. + hexPart2 = $$hexPart2$$system("sh -c 'printf %02x $$member(splitVersion, 2)'")
  22. decVersion = $$system("sh -c 'printf %1d 0x$$hexVersion'").
  23. hexVersion = $$hexVersion$$hexPart2
  24. decVersion = $$decVersion$$system("sh -c 'printf %d 0x$$hexPart2'")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement