Skip to content

Commit 31d8fe8

Browse files
kgpaifacebook-github-bot
authored andcommitted
Fix PyVelox build by resetting ROOT_DIR (facebookincubator#9331)
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
1 parent 476ad15 commit 31d8fe8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def build_extension(self, ext):
159159
os.makedirs(self.build_temp)
160160

161161
subprocess.check_call(
162-
["cmake", str(os.path.join(ROOT_DIR, "pyvelox"))] + cmake_args,
162+
["cmake", str(ROOT_DIR)] + cmake_args,
163163
cwd=self.build_temp,
164164
)
165165
subprocess.check_call(

0 commit comments

Comments
 (0)