Skip to content

Commit 629e05f

Browse files
GH-45850: Fix r-devel note about symbols in .a libs (#45870)
### Rationale for this change [CRAN](wch/r-source@fb5500b) 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
1 parent 791091e commit 629e05f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

r/src/Makevars.in

+5
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,8 @@ PKG_CPPFLAGS=@cflags@
2727
# PKG_CXXFLAGS=$(CXX_VISIBILITY)
2828
CXX_STD=CXX17
2929
PKG_LIBS=@libs@
30+
31+
all: $(SHLIB) purify
32+
33+
purify: $(SHLIB)
34+
rm -rf ../libarrow || true

0 commit comments

Comments
 (0)