COMPMID-556: Add support to build arm64-v8.2-a for Android platform (clang compiler)

Change-Id: Ibb779dd3a8d10786da6d8f70590e654e14654d7b
Reviewed-on: http://mpd-gerrit.cambridge.arm.com/95530
Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Reviewed-by: Pablo Tello <pablo.tello@arm.com>
diff --git a/scripts/fix_code_formatting.sh b/scripts/fix_code_formatting.sh
index 721ade8..021f925 100755
--- a/scripts/fix_code_formatting.sh
+++ b/scripts/fix_code_formatting.sh
@@ -24,7 +24,7 @@
 then
     files=$(find $DIRECTORIES -type f \( -name \*.cpp -o -iname \*.h -o -name \*.inl -o -name \*.cl -o -name \*.cs \))
 else
-	files=$@
+    files=$@
 fi
 for f in $files
 do
@@ -33,7 +33,7 @@
         continue
     fi
 
-	sed -i 's/\t/    /g' $f
-	clang-format -i -style=file $f
-	astyle -n -q $ASTYLE_PARAMETERS $f
+    sed -i 's/\t/    /g' $f
+    clang-format -i -style=file $f
+    astyle -n -q $ASTYLE_PARAMETERS $f
 done