shithub: libvpx

Download patch

ref: b192d99f7367871908551ca940e06b7cb94e760b
parent: d984763867f82879783c5b88615d9a458e3e7ad0
author: Frank Galligan <fgalligan@google.com>
date: Mon Dec 10 10:50:48 EST 2012

Fix ads2gas script to look for ALIGN as a word.

Change-Id: I4efc4f4e87e8666b69257de82c5c5dd4aadee28c

--- a/build/make/ads2gas.pl
+++ b/build/make/ads2gas.pl
@@ -149,7 +149,7 @@
     s/^([a-zA-Z_0-9\$]+)/$1:/ if !/EQU/;
 
     # ALIGN directive
-    s/ALIGN/.balign/g;
+    s/\bALIGN\b/.balign/g;
 
     # ARM code
     s/\sARM/.arm/g;
--