From 863e25b6e0d277662dd262f9c3e594f5f2d101c3 Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Fri, 4 Jan 2019 18:54:57 -0800 Subject: [PATCH] setuptools bdist_apps: Better support relative paths for --build-base option --- direct/src/dist/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/dist/commands.py b/direct/src/dist/commands.py index 2254515b2f..abf0e9f777 100644 --- a/direct/src/dist/commands.py +++ b/direct/src/dist/commands.py @@ -1346,7 +1346,7 @@ class bdist_apps(setuptools.Command): self.run_command('build_apps') platforms = build_cmd.platforms - build_base = build_cmd.build_base + build_base = os.path.abspath(build_cmd.build_base) os.makedirs(self.dist_dir, exist_ok=True) os.chdir(self.dist_dir)