This is an automated email from the ASF dual-hosted git repository. brycemecum pushed a commit to branch maint-19.0.1.1-r in repository https://gitbox.apache.org/repos/asf/arrow.git
commit cd80a87314e9a48398c1c1a58a4c27752f7fec00 Author: Neal Richardson <[email protected]> AuthorDate: Thu Mar 20 15:47:38 2025 -0400 GH-45850: Fix r-devel note about symbols in .a libs (#45870) ### Rationale for this change [CRAN](https://github.com/wch/r-source/commit/fb5500bb6f392020e9b622c6e52607018d94daac) Fixes #45850 ### What changes are included in this PR? Attempt to delete static libraries we build or download during the R package build. ### Are these changes tested? CI should pass once again ### Are there any user-facing changes? No * GitHub Issue: #45850 --- r/src/Makevars.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/r/src/Makevars.in b/r/src/Makevars.in index 0516d29726..44bc24c887 100644 --- a/r/src/Makevars.in +++ b/r/src/Makevars.in @@ -27,3 +27,8 @@ PKG_CPPFLAGS=@cflags@ # PKG_CXXFLAGS=$(CXX_VISIBILITY) CXX_STD=CXX17 PKG_LIBS=@libs@ + +all: $(SHLIB) purify + +purify: $(SHLIB) + rm -rf ../libarrow || true
