Skip to content

Commit

Permalink
ARROW-7876: [R] Installation fails in the documentation generation image
Browse files Browse the repository at this point in the history
See build log https://github.com/apache/arrow/runs/452378996#step:5:11843

Closes #6445 from kszucs/ldconfig and squashes the following commits:

242579d <Krisztián Szűcs> run ldconfig after installing the c++ libraries

Authored-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
Signed-off-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
  • Loading branch information
kszucs committed Feb 19, 2020
1 parent 4d82549 commit b6ff207
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ci/scripts/cpp_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ time cmake --build . --target install

popd

if [ -x "$(command -v ldconfig)" ]; then
ldconfig
fi

if [ "${ARROW_USE_CCACHE}" == "ON" ]; then
echo -e "===\n=== ccache statistics after build\n==="
ccache -s
Expand Down

0 comments on commit b6ff207

Please sign in to comment.