summaryrefslogtreecommitdiff
path: root/build/make
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2011-12-12 17:17:07 -0800
committerJohann <johannkoenig@google.com>2011-12-13 10:40:34 -0800
commit41e3da3a8c7451fe53f1497aaa07b145de1deaed (patch)
treed1cd6f22f8d7f7eb2ad7aa2b306e894bf1ef8415 /build/make
parent6b2792b0e0189fa3f7d75b2ac885417606225656 (diff)
downloadlibvpx-41e3da3a8c7451fe53f1497aaa07b145de1deaed.tar
libvpx-41e3da3a8c7451fe53f1497aaa07b145de1deaed.tar.gz
libvpx-41e3da3a8c7451fe53f1497aaa07b145de1deaed.tar.bz2
libvpx-41e3da3a8c7451fe53f1497aaa07b145de1deaed.zip
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
Diffstat (limited to 'build/make')
-rwxr-xr-xbuild/make/ads2gas_apple.pl4
1 files changed, 2 insertions, 2 deletions
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 (<STDIN>)
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/;