From 6251a1cfc7b678650bca4ef68ea3b50c4b59f065 Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Fri, 30 Dec 2016 11:56:29 -0800 Subject: [PATCH] deploy-ng: Make sure the runtime is created in the build directory We used to build in the current directory and copy to the build directory, which resulted in two copies of the runtime. --- direct/src/showutil/dist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/showutil/dist.py b/direct/src/showutil/dist.py index a92f610df2..2e75d47aab 100644 --- a/direct/src/showutil/dist.py +++ b/direct/src/showutil/dist.py @@ -44,7 +44,7 @@ class build(distutils.command.build.build): for exmod in self.distribution.exclude_modules: freezer.excludeModule(exmod) freezer.done(addStartupModules=True) - freezer.generateRuntimeFromStub(app.runtimename) + freezer.generateRuntimeFromStub(os.path.join(builddir, app.runtimename)) # Copy extension modules for module, source_path in freezer.extras: