summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/toolchain.lua
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-02-15 20:05:47 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-02-15 20:05:47 +0100
commit249b5f0b96e5cf68013055553b0892c538668f0f (patch)
tree5dbeb2b06dec03465a1ed0841fa7dc8032a85737 /scripts/toolchain.lua
parent2b781d87b1dc856b432ff0d11d7e7d818e0cf345 (diff)
fixed logic in expression (nw)
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r--scripts/toolchain.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index 40690b00831..137a873ae09 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -920,7 +920,7 @@ function toolchain(_buildDir, _subDir)
end
function strip()
- if not _OPTIONS["STRIP_SYMBOLS"]=="1" then
+ if _OPTIONS["STRIP_SYMBOLS"]~="1" then
return true
end