This is an automated email from the ASF dual-hosted git repository.
thisisnic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 93915f511a GH-47193: [R] Update R Makefile to exclude flight odbc from
cpp sync (#47194)
93915f511a is described below
commit 93915f511a7bac565e58651953b8ef62b701f02b
Author: Nic Crane <[email protected]>
AuthorDate: Fri Jul 25 15:44:17 2025 +0100
GH-47193: [R] Update R Makefile to exclude flight odbc from cpp sync
(#47194)
### Rationale for this change
Unnecessary files being synced and causing portability warnings
### What changes are included in this PR?
Don't sync 'em
### Are these changes tested?
Nope
### Are there any user-facing changes?
Nope
* GitHub Issue: #47193
Authored-by: Nic Crane <[email protected]>
Signed-off-by: Nic Crane <[email protected]>
---
r/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/r/Makefile b/r/Makefile
index 358e2b6722..304fb402b3 100644
--- a/r/Makefile
+++ b/r/Makefile
@@ -42,7 +42,7 @@ deps:
# we must rename .env to dotenv and then replace references to it in
cpp/CMakeLists.txt
sync-cpp:
cp ../NOTICE.txt inst/NOTICE.txt
- rsync --archive --delete --exclude 'apidoc' --exclude 'build' --exclude
'build-support/boost_*' --exclude 'examples' --exclude 'src/gandiva' --exclude
'src/jni' --exclude 'src/skyhook' --exclude 'submodules' --exclude
'**/*_test.cc' ../cpp tools/
+ rsync --archive --delete --exclude 'apidoc' --exclude 'build' --exclude
'build-support/boost_*' --exclude 'examples' --exclude 'src/gandiva' --exclude
'src/arrow/flight/sql/odbc*' --exclude 'src/jni' --exclude 'src/skyhook'
--exclude 'submodules' --exclude '**/*_test.cc' ../cpp tools/
cp -p ../.env tools/dotenv
cp -p ../NOTICE.txt tools/
cp -p ../LICENSE.txt tools/