summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2016-06-30 10:24:02 -0400
committer Scott Stone <tafoid@gmail.com>2016-06-30 10:24:02 -0400
commitc41cec6baf67d5a0b0858fe2526a398cbd53ffcb (patch)
tree5ea9a28d88709decd12166ee9fadcbdce981f7d4
parent19398d658aa8cdb2c37d38333a1be0ee86706dc3 (diff)
parentff055cd6c42d36bddd61d6442e1f3a388cee1b23 (diff)
Merge branch 'master' of https://github.com/mamedev/mame
-rw-r--r--scripts/toolchain.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index b48c367f1ad..979b22f63b1 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -1063,12 +1063,12 @@ function strip()
configuration { "mingw*", "x64", "Release" }
postbuildcommands {
"$(SILENT) echo Stripping symbols.",
- "$(SILENT) " .. (_OPTIONS['TOOLCHAIN'] and toolchainPrefix or "$(MINGW64)/bin/") .. "strip -s \"$(TARGET)\"",
+ "$(SILENT) " .. (_OPTIONS['TOOLCHAIN'] or "$(MINGW64)/bin/") .. "strip -s \"$(TARGET)\"",
}
configuration { "mingw*", "x32", "Release" }
postbuildcommands {
"$(SILENT) echo Stripping symbols.",
- "$(SILENT) " .. (_OPTIONS['TOOLCHAIN'] and toolchainPrefix or "$(MINGW32)/bin/") .. "strip -s \"$(TARGET)\"",
+ "$(SILENT) " .. (_OPTIONS['TOOLCHAIN'] or "$(MINGW32)/bin/") .. "strip -s \"$(TARGET)\"",
}
configuration { "pnacl" }