treewide: Consistently call ARM 'arm'

No need for silly differences.
This commit is contained in:
Tuomas Tynkkynen
2017-08-24 01:17:01 +03:00
parent 46930ef3e6
commit 0c0fad6141
12 changed files with 12 additions and 14 deletions
+1 -1
View File
@@ -330,7 +330,7 @@ stdenv.mkDerivation ({
# TODO(@Ericson2314): Always pass "--target" and always prefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
if hostPlatform == targetPlatform && targetPlatform.isArm32
if hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";