From 3f7a688cb327ee18fbe38f5e1e43d3fd6825a86c Mon Sep 17 00:00:00 2001 From: gohai Date: Thu, 6 Apr 2017 16:43:57 +0200 Subject: [PATCH] ARM: Fix typo s/platformNameArmv6hh/platformNameArmv6hf/ --- app/src/processing/app/Library.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/processing/app/Library.java b/app/src/processing/app/Library.java index 1f2029e41..12c15b146 100644 --- a/app/src/processing/app/Library.java +++ b/app/src/processing/app/Library.java @@ -189,7 +189,7 @@ public class Library extends LocalContribution { String platformName = platformNames[i]; String platformName32 = platformName + "32"; String platformName64 = platformName + "64"; - String platformNameArmv6hh = platformName + "-armv6hf"; + String platformNameArmv6hf = platformName + "-armv6hf"; String platformNameArm64 = platformName + "-arm64"; // First check for things like 'application.macosx=' or 'application.windows32' in the export.txt file. @@ -216,7 +216,7 @@ public class Library extends LocalContribution { platformList64 = listPlatformEntries(libraryFolder, platformName64, baseList); } if (platformListArmv6hf == null) { - platformListArmv6hf = listPlatformEntries(libraryFolder, platformNameArmv6hh, baseList); + platformListArmv6hf = listPlatformEntries(libraryFolder, platformNameArmv6hf, baseList); } if (platformListArm64 == null) { platformListArm64 = listPlatformEntries(libraryFolder, platformNameArm64, baseList); @@ -244,7 +244,7 @@ public class Library extends LocalContribution { exportList.put(platformName64, platformList64); } if (platformListArmv6hf != null) { - exportList.put(platformNameArmv6hh, platformListArmv6hf); + exportList.put(platformNameArmv6hf, platformListArmv6hf); } if (platformListArm64 != null) { exportList.put(platformNameArm64, platformListArm64);