@@ -189,7 +189,7 @@ protected void handle() {
189189 String platformName = platformNames [i ];
190190 String platformName32 = platformName + "32" ;
191191 String platformName64 = platformName + "64" ;
192- String platformNameArmv6hh = platformName + "-armv6hf" ;
192+ String platformNameArmv6hf = platformName + "-armv6hf" ;
193193 String platformNameArm64 = platformName + "-arm64" ;
194194
195195 // First check for things like 'application.macosx=' or 'application.windows32' in the export.txt file.
@@ -216,7 +216,7 @@ protected void handle() {
216216 platformList64 = listPlatformEntries (libraryFolder , platformName64 , baseList );
217217 }
218218 if (platformListArmv6hf == null ) {
219- platformListArmv6hf = listPlatformEntries (libraryFolder , platformNameArmv6hh , baseList );
219+ platformListArmv6hf = listPlatformEntries (libraryFolder , platformNameArmv6hf , baseList );
220220 }
221221 if (platformListArm64 == null ) {
222222 platformListArm64 = listPlatformEntries (libraryFolder , platformNameArm64 , baseList );
@@ -244,7 +244,7 @@ protected void handle() {
244244 exportList .put (platformName64 , platformList64 );
245245 }
246246 if (platformListArmv6hf != null ) {
247- exportList .put (platformNameArmv6hh , platformListArmv6hf );
247+ exportList .put (platformNameArmv6hf , platformListArmv6hf );
248248 }
249249 if (platformListArm64 != null ) {
250250 exportList .put (platformNameArm64 , platformListArm64 );
0 commit comments