From: Frank Galligan Date: Mon, 10 Dec 2012 23:50:48 +0000 (-0800) Subject: Fix ads2gas script to look for ALIGN as a word. X-Git-Tag: v1.3.0~1217^2~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b192d99f7367871908551ca940e06b7cb94e760b;p=libvpx Fix ads2gas script to look for ALIGN as a word. Change-Id: I4efc4f4e87e8666b69257de82c5c5dd4aadee28c --- diff --git a/build/make/ads2gas.pl b/build/make/ads2gas.pl index ba70242dc..d8231e830 100755 --- a/build/make/ads2gas.pl +++ b/build/make/ads2gas.pl @@ -149,7 +149,7 @@ while () 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;