From: Martin Storsjo Date: Wed, 15 May 2013 17:54:20 +0000 (+0300) Subject: ads2gas: Use the correct perl string comparison operator X-Git-Tag: v1.3.0~1126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70977814679d84b314b2cf41d8e6b76c0868c21b;p=libvpx 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 --- diff --git a/build/make/ads2gas.pl b/build/make/ads2gas.pl index 533c85ba5..69522bfd8 100755 --- 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";