Skip to content

Commit

Permalink
fix libarrow dir on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Oct 13, 2023
1 parent 2d5d66e commit 32a06e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r/tools/nixlibs.R
Original file line number Diff line number Diff line change
Expand Up @@ -866,8 +866,8 @@ download_ok <- !test_mode && !env_is("TEST_OFFLINE_BUILD", "true")
# `create_package_with_all_dependencies()` in install-arrow.R
thirdparty_dependency_dir <- Sys.getenv("ARROW_THIRDPARTY_DEPENDENCY_DIR", "tools/thirdparty_dependencies")

# configure.win uses a different libarrow dir
dst_dir <- paste0(ifelse(on_windows, "windows", "libarrow"), "/arrow-", VERSION)
# configure.win uses a different libarrow dir and and the zip is already nested
dst_dir <- ifelse(on_windows, "windows", paste0("libarrow/arrow-", VERSION))

if (!test_mode && !file.exists(paste0(dst_dir, "/include/arrow/api.h"))) {
# If we're working in a local checkout and have already built the libs, we
Expand Down

0 comments on commit 32a06e4

Please sign in to comment.