Android: make sure we don't add _$${QT_ARCH} twice

Fixes: QTBUG-80582
Change-Id: I2b3790bb18754e146db611d61c48a3b7a532575c
Reviewed-by: Andy Shaw <andy.shaw@qt.io>
This commit is contained in:
BogDan Vatra 2019-12-06 14:26:17 +02:00 committed by BogDan Vatra
parent 1edf8bc465
commit ce04fa345d

View File

@ -36,7 +36,8 @@ build_pass {
}
}
} else: contains(TEMPLATE, "lib"):!static:!QTDIR_build:android_install {
!contains(TARGET, "_$${QT_ARCH}"): TARGET = $${TARGET}_$${QT_ARCH}
tmpvar = $$str_member(TARGET, -$$str_size(QT_ARCH), -1)
!equals(tmpvar, $${QT_ARCH}): TARGET = $${TARGET}_$${QT_ARCH}
target.path = /libs/$$ANDROID_TARGET_ARCH/
INSTALLS *= target
}