From: Johann Date: Tue, 13 Dec 2011 01:17:07 +0000 (-0800) Subject: Fix incorrect PROC/ENDP match X-Git-Tag: v1.0.0~58^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41e3da3a8c7451fe53f1497aaa07b145de1deaed;p=libvpx Fix incorrect PROC/ENDP match The conversion script was incorrectly matching CONFIG_POSTPROC[_VISUALIZER] and generating an incorrect vpx_config.asm Match both PROC and ENDP on word boundaries Change-Id: Ic2788c3b522d4ee0afc5223b72e1b09fb52645be --- diff --git a/build/make/ads2gas_apple.pl b/build/make/ads2gas_apple.pl index 78f4a97f5..a9740a826 100755 --- a/build/make/ads2gas_apple.pl +++ b/build/make/ads2gas_apple.pl @@ -157,8 +157,8 @@ while () s/\sPRESERVE8/@ PRESERVE8/g; # Strip PROC and ENDPROC - s/PROC/@/g; - s/ENDP/@/g; + s/\bPROC\b/@/g; + s/\bENDP\b/@/g; # EQU directive s/(.*)EQU(.*)/.set $1, $2/;