Skip to content

Commit

Permalink
Fix out of tree (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner authored Dec 9, 2021
1 parent 153fc41 commit f3512c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def setup(self, parallel, branch, test_with_PTY=False, **kwargs):

if self.build_out_of_tree:
configure_cmd = "../configure"
oot_kwargs = {'workdir': out_of_tree_dir}
oot_kwargs = {'workdir': os.path.join("build", out_of_tree_dir)}
else:
configure_cmd = "./configure"
oot_kwargs = {}
Expand Down

0 comments on commit f3512c3

Please sign in to comment.