Skip to content

Commit

Permalink
don't vendor backward
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Jul 26, 2024
1 parent 17f1cc0 commit 773b3b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions r/adbcpostgresql/bootstrap.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ file.copy("../../c/include/arrow-adbc/adbc.h", "src/arrow-adbc/adbc.h")
source_files <- list.files("../../c", "\\.(h|c|cc|hpp)$", recursive = TRUE)
source_files <- source_files[!grepl("_test\\.cc", source_files)]
source_files <- source_files[!grepl("^(build|out)/", source_files)]
# backward C++ causes CRAN warnings and the drivers do not use it
source_files <- source_files[!grepl("^vendor/backward", source_files)]
source_files <- file.path("c", source_files)
src <- file.path("../..", source_files)
dst <- file.path("src", source_files)
Expand Down
2 changes: 2 additions & 0 deletions r/adbcsqlite/bootstrap.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ file.copy("../../c/include/arrow-adbc/adbc.h", "src/arrow-adbc/adbc.h")
source_files <- list.files("../../c", "\\.(h|c|cc|hpp)$", recursive = TRUE)
source_files <- source_files[!grepl("_test\\.cc", source_files)]
source_files <- source_files[!grepl("^(build|out)/", source_files)]
# backward C++ causes CRAN warnings and the drivers do not use it
source_files <- source_files[!grepl("^vendor/backward", source_files)]
source_files <- file.path("c", source_files)
src <- file.path("../..", source_files)
dst <- file.path("src", source_files)
Expand Down

0 comments on commit 773b3b2

Please sign in to comment.