shithub: libvpx

Download patch

ref: 70977814679d84b314b2cf41d8e6b76c0868c21b
parent: 132422d9ab705bf8684939f425eab7780e58c2bc
author: Martin Storsjo <martin@martin.st>
date: Wed May 15 16:54:20 EDT 2013

ads2gas: Use the correct perl string comparison operator

Using == ended up matching no matter what string was passed in
(which so far only happened if when the -thumb parameter
was set).

Change-Id: Ifa7b611d016d984aec3b697b5a1a07839f7508dc

--- a/build/make/ads2gas.pl
+++ b/build/make/ads2gas.pl
@@ -21,7 +21,7 @@
 my $thumb = 0;
 
 foreach my $arg (@ARGV) {
-    $thumb = 1 if ($arg == "-thumb");
+    $thumb = 1 if ($arg eq "-thumb");
 }
 
 print "@ This file was created from a .asm file\n";
--