From 5d3e2c711178aacfe858d90ca8c6a9c8198d160f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 5 Jul 2022 20:48:01 +0530 Subject: [PATCH] ... --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 200ea80e4..a3c21eb2a 100755 --- a/setup.py +++ b/setup.py @@ -866,6 +866,7 @@ def build_launcher(args: Options, launcher_dir: str = '.', bundle_type: str = 's # RUNPATH locations for transitive dependencies, unlike RPATH. ldflags += ['-Wl,--disable-new-dtags', '-Wl,-rpath,$ORIGIN/../lib'] os.makedirs(launcher_dir, exist_ok=True) + os.makedirs(build_dir, exist_ok=True) objects = [] for src in ('launcher.c', 'prewarm-launcher.c'): obj = os.path.join(build_dir, src.replace('.c', '.o'))