ref: e4d10f3838b562eb04ee879aec76bb596740f174
parent: 26a1ad604fb574f26ef5220e56224370857517aa
parent: 53d797840e344c5c336276c14eb7e1d33352da78
author: Johann <johannkoenig@google.com>
date: Wed Nov 13 09:08:03 EST 2013
Merge "Split macro strings on whitespace"
--- a/build/make/ads2gas_apple.pl
+++ b/build/make/ads2gas_apple.pl
@@ -188,7 +188,7 @@
$trimmed =~ s/,//g;
# string to array
- @incoming_array = split(/ /, $trimmed);
+ @incoming_array = split(/\s+/, $trimmed);
print ".macro @incoming_array[0]\n";
--
⑨