Merge "Merge remote-tracking branch 'origin/5.9.1' into 5.9" into refs/staging/5.9

This commit is contained in:
Liang Qi 2017-07-02 16:24:12 +00:00 committed by The Qt Project
commit ab2c1f9509
2 changed files with 8 additions and 6 deletions

9
dist/changes-5.9.1 vendored
View File

@ -21,6 +21,13 @@ information about a particular change.
* Qt 5.9.1 Changes * * Qt 5.9.1 Changes *
**************************************************************************** ****************************************************************************
Deprecation Notice
------------------
- The following platforms or toolchains are deprecated and will be
removed as of Qt 5.11:
* Microsoft Visual Studio 2013
Important Behavior Changes Important Behavior Changes
-------------------------- --------------------------
@ -104,8 +111,6 @@ configure & build system
qmake qmake
----- -----
- [QTBUG-38452][Android] Fixed overwriting of INSTALLS for target, and the
resulting bogus attempts to write to /libs on the host system.
- [QTBUG-42830][Android] INSTALL targets are no longer created for static - [QTBUG-42830][Android] INSTALL targets are no longer created for static
libraries. libraries.
- [QTBUG-40825][QTBUG-59457][Unix] Fixed various makespecs to append shared - [QTBUG-40825][QTBUG-59457][Unix] Fixed various makespecs to append shared

View File

@ -1,6 +1,3 @@
android_install:contains(INSTALLS, target):!isEmpty(target.path): \
CONFIG -= android_install
contains(TEMPLATE, ".*app") { contains(TEMPLATE, ".*app") {
!android_app { !android_app {
!contains(TARGET, ".so"): TARGET = lib$${TARGET}.so !contains(TARGET, ".so"): TARGET = lib$${TARGET}.so
@ -11,7 +8,7 @@ contains(TEMPLATE, ".*app") {
INSTALLS *= target INSTALLS *= target
} }
} }
} else: contains(TEMPLATE, "lib"):!static:android_install { } else: contains(TEMPLATE, "lib"):!static:!QTDIR_build:android_install {
target.path = /libs/$$ANDROID_TARGET_ARCH/ target.path = /libs/$$ANDROID_TARGET_ARCH/
INSTALLS *= target INSTALLS *= target
} }