Skip to content

Commit c4729e8

Browse files
committed
Fix --byte-code-only argument on Solaris
1 parent a0c34eb commit c4729e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cpydist/bdist_solaris.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,8 @@ def run(self):
311311
sun_root = os.path.join(build_base, "sun_pure")
312312
cmd_install = self.reinitialize_command("install",
313313
reinit_subcommands=1)
314-
cmd_install.compile = False
314+
cmd_install.byte_code_only = self.byte_code_only
315+
cmd_install.compile = self.byte_code_only
315316
cmd_install.distribution.metadata.name = metadata_name
316317
cmd_install.with_mysql_capi = None
317318
cmd_install.root = os.path.join(sun_root, self.dstroot)

0 commit comments

Comments
 (0)