summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2020-03-09 19:37:11 +0100
committerAlexandru Croitor <alexandru.croitor@qt.io>2020-03-12 11:41:46 +0100
commit60a93a15b1d9922cacc53df983262a46aa5b2015 (patch)
tree312761ab3a2c48b30b1e19e23c700896eb307364
parenta1867333d460f646843baf34386b991197cffe9c (diff)
CMake: Fix incorrect argument in QtBuildInternalsAndroid
Uncovered while building qtdeclarative. Change-Id: If1a36f2640a3a5d765e7ca74b0ba1d39ef2a18f0 Reviewed-by: Leander Beernaert <leander.beernaert@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
-rw-r--r--cmake/QtBuildInternals/QtBuildInternalsAndroid.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/QtBuildInternals/QtBuildInternalsAndroid.cmake b/cmake/QtBuildInternals/QtBuildInternalsAndroid.cmake
index 51645f48d5..9830cf9871 100644
--- a/cmake/QtBuildInternals/QtBuildInternalsAndroid.cmake
+++ b/cmake/QtBuildInternals/QtBuildInternalsAndroid.cmake
@@ -175,8 +175,8 @@ function(qt_android_dependencies target)
# Bundled files
if(arg_BUNDLED_FILES)
- foreach(file IN LISTS arg_BUNDLED_FILES)
- file(TO_NATIVE_PATH ${lib_file} file_native)
+ foreach(bundled_file IN LISTS arg_BUNDLED_FILES)
+ file(TO_NATIVE_PATH ${bundled_file} file_native)
string(APPEND file_contents "<bundled file=\"${file_native}\" />\n")
endforeach()
endif()