summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2017-06-01 08:47:08 +0800
committerruki <[email protected]>2017-06-01 08:47:24 +0800
commit1a622c46441db211da1cb381c485a031a5c2a19d (patch)
tree143e033d895720a6ab63858af1ac8567a8e12d84
parenta567937165414e1549003900b75958f4bee3b6cf (diff)
remove some deprecated vars
-rw-r--r--xmake/core/project/project.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/xmake/core/project/project.lua b/xmake/core/project/project.lua
index 76f70db40..ea70777de 100644
--- a/xmake/core/project/project.lua
+++ b/xmake/core/project/project.lua
@@ -323,16 +323,6 @@ function project._interpreter()
-- map it
result = maps[variable]
-
- -- deprecated for "$(OS)"
- if result == nil and variable == "OS" then
-
- -- get os:upper()
- result = platform.os():upper()
-
- -- deprecated
- deprecated.add("$(\"OS\")", "$(\"os:upper\")")
- end
end
-- ok?