From edc8878632f487ef0253907b1ed54ecc2bf19d95 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 5 Jul 2019 19:13:34 +0530 Subject: [PATCH] Use relative paths for object files --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 231c1029b..0f79f004e 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ sys.path.insert(0, os.path.join(base, 'glfw')) glfw = importlib.import_module('glfw') verbose = False del sys.path[0] -build_dir = os.path.join(base, 'build') +build_dir = 'build' constants = os.path.join(base, 'kitty', 'constants.py') with open(constants, 'rb') as f: constants = f.read().decode('utf-8')