Skip to content

Commit

Permalink
ARROW-8206: [R] Minor fix for backwards compatibility on Linux instal…
Browse files Browse the repository at this point in the history
…lation

Closes #6712 from nealrichardson/r-linux-final-final

Authored-by: Neal Richardson <neal.p.richardson@gmail.com>
Signed-off-by: Neal Richardson <neal.p.richardson@gmail.com>
  • Loading branch information
nealrichardson committed Mar 25, 2020
1 parent 9f41fd5 commit 1d439ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r/configure
Expand Up @@ -116,8 +116,8 @@ else
if [ "${LIBARROW_DOWNLOAD}" = "" ] && [ "${NOT_CRAN}" != "" ]; then
LIBARROW_DOWNLOAD=$NOT_CRAN; export LIBARROW_DOWNLOAD
fi
if [ "${LIBARROW_BINARY}" = "" ] && [ "${NOT_CRAN}" != "" ]; then
LIBARROW_BINARY=$NOT_CRAN; export LIBARROW_BINARY
if [ "${LIBARROW_BINARY}" = "" ] && [ "${LIBARROW_DOWNLOAD}" != "" ]; then
LIBARROW_BINARY=$LIBARROW_DOWNLOAD; export LIBARROW_BINARY
fi
if [ "${LIBARROW_MINIMAL}" = "" ] && [ "${LIBARROW_DOWNLOAD}" = "true" ]; then
LIBARROW_MINIMAL=false; export LIBARROW_MINIMAL
Expand Down

0 comments on commit 1d439ac

Please sign in to comment.