From b192d99f7367871908551ca940e06b7cb94e760b Mon Sep 17 00:00:00 2001 From: Frank Galligan Date: Mon, 10 Dec 2012 15:50:48 -0800 Subject: [PATCH] Fix ads2gas script to look for ALIGN as a word. Change-Id: I4efc4f4e87e8666b69257de82c5c5dd4aadee28c --- build/make/ads2gas.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1