Skip to content

Commit 00766c9

Browse files
committed
Move tools to site_scons/site_tools, which is the canonical scons tools directory.
1 parent c20a84e commit 00766c9

File tree

10 files changed

+3
-3
lines changed

10 files changed

+3
-3
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if profile:
2727
elif os.path.isfile(profile + ".py"):
2828
customs.append(profile + ".py")
2929
opts = Variables(customs, ARGUMENTS)
30-
cpp_tool = Tool("godotcpp", toolpath=["tools"])
30+
cpp_tool = Tool("godotcpp", toolpath=["site_scons/site_tools"])
3131
cpp_tool.options(opts, env)
3232
opts.Update(env)
3333

File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ def validate_parent_dir(key, val, env):
5252
def get_platform_tools_paths(env):
5353
path = env.get("custom_tools", None)
5454
if path is None:
55-
return ["tools"]
56-
return [normalize_path(path, env), "tools"]
55+
return ["site_scons/site_tools"]
56+
return [normalize_path(path, env), "site_scons/site_tools"]
5757

5858

5959
def get_custom_platforms(env):

0 commit comments

Comments
 (0)