summaryrefslogtreecommitdiff
path: root/build/make
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2013-05-15 20:54:20 +0300
committerMartin Storsjo <martin@martin.st>2013-05-15 20:56:50 +0300
commit70977814679d84b314b2cf41d8e6b76c0868c21b (patch)
tree2b0a1f4b5b07d1d392bce01ea19a68ed7e9c4d1f /build/make
parent132422d9ab705bf8684939f425eab7780e58c2bc (diff)
downloadlibvpx-70977814679d84b314b2cf41d8e6b76c0868c21b.tar
libvpx-70977814679d84b314b2cf41d8e6b76c0868c21b.tar.gz
libvpx-70977814679d84b314b2cf41d8e6b76c0868c21b.tar.bz2
libvpx-70977814679d84b314b2cf41d8e6b76c0868c21b.zip
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
Diffstat (limited to 'build/make')
-rwxr-xr-xbuild/make/ads2gas.pl2
1 files changed, 1 insertions, 1 deletions
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";