python: typo 'prebuilt' dir

This commit is contained in:
Nguyen Anh Quynh
2016-12-04 18:18:24 +08:00
parent 236a29841d
commit 4613580e07
2 changed files with 10 additions and 6 deletions

View File

@ -123,7 +123,7 @@ def build_libraries():
# check if a prebuilt library exists
# if so, use it instead of building
if os.path.exists(os.path.join(ROOT_DIR, 'prebuilt', LIBRARY_FILE)):
shutil.copy(os.path.join(ROOT_DIR, 'prebuild', LIBRARY_FILE), LIBS_DIR)
shutil.copy(os.path.join(ROOT_DIR, 'prebuilt', LIBRARY_FILE), LIBS_DIR)
return
# otherwise, build!!