summaryrefslogtreecommitdiff
path: root/build/make
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2013-11-12 12:26:45 -0800
committerJohann <johannkoenig@google.com>2013-11-12 14:24:58 -0800
commit53d797840e344c5c336276c14eb7e1d33352da78 (patch)
tree2e024a2be1eb06b779601617f4b289a81464920a /build/make
parenta33a84b11a483adb2fa8bd60946c364d0b397ce2 (diff)
downloadlibvpx-53d797840e344c5c336276c14eb7e1d33352da78.tar
libvpx-53d797840e344c5c336276c14eb7e1d33352da78.tar.gz
libvpx-53d797840e344c5c336276c14eb7e1d33352da78.tar.bz2
libvpx-53d797840e344c5c336276c14eb7e1d33352da78.zip
Split macro strings on whitespace
Match any whitespace instead of individual spaces. The macro definitions in vp9/common/arm/neon/vp9_short_idct32x32_1_add_neon.asm triggered this and treated spaces as arguments leading to lines like: $8vld1$8.$88$8 {$8q8$8}, [$$89$8], $$8stride$8 Change-Id: I2d5718aba4614e4fd7b702e15c2a1bd80e656bd2
Diffstat (limited to 'build/make')
-rwxr-xr-xbuild/make/ads2gas_apple.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/ads2gas_apple.pl b/build/make/ads2gas_apple.pl
index 51e6fbcbd..fdafa982b 100755
--- a/build/make/ads2gas_apple.pl
+++ b/build/make/ads2gas_apple.pl
@@ -188,7 +188,7 @@ while (<STDIN>)
$trimmed =~ s/,//g;
# string to array
- @incoming_array = split(/ /, $trimmed);
+ @incoming_array = split(/\s+/, $trimmed);
print ".macro @incoming_array[0]\n";