Skip to content

Commit

Permalink
Fix PyVelox build by resetting ROOT_DIR (facebookincubator#9331)
Browse files Browse the repository at this point in the history
Summary:
Fixes : facebookincubator#9330

PyVelox builds started failing because of change in ROOT_DIR.

Pull Request resolved: facebookincubator#9331

Reviewed By: xiaoxmeng

Differential Revision: D55618314

Pulled By: kgpai

fbshipit-source-id: a9a9cb23b848b2766820ef872f0eda862cbcd840
  • Loading branch information
kgpai authored and facebook-github-bot committed Apr 2, 2024
1 parent 476ad15 commit 31d8fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def build_extension(self, ext):
os.makedirs(self.build_temp)

subprocess.check_call(
["cmake", str(os.path.join(ROOT_DIR, "pyvelox"))] + cmake_args,
["cmake", str(ROOT_DIR)] + cmake_args,
cwd=self.build_temp,
)
subprocess.check_call(
Expand Down

0 comments on commit 31d8fe8

Please sign in to comment.