Skip to content

Commit

Permalink
Try to fix for solaris
Browse files Browse the repository at this point in the history
  • Loading branch information
nealrichardson committed Nov 5, 2019
1 parent 237e027 commit 6d8166b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions r/configure
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [ "$ARROW_R_DEV" = "TRUE" ]; then
${R_HOME}/bin/Rscript data-raw/codegen.R
fi

UNAME=$(uname -s)
UNAME=`uname -s`

if [ "$LOCAL_AUTOBREW" = "TRUE" ]; then
# LOCAL_AUTOBREW means use the script in tools/
Expand Down Expand Up @@ -96,10 +96,10 @@ else
fi

# Find compiler
CXXCPP="$(${R_HOME}/bin/R CMD config CXX11) -E"
CXX11FLAGS=$("${R_HOME}"/bin/R CMD config CXX11FLAGS)
CXX11STD=$("${R_HOME}"/bin/R CMD config CXX11STD)
CPPFLAGS=$("${R_HOME}"/bin/R CMD config CPPFLAGS)
CXXCPP="`${R_HOME}/bin/R CMD config CXX11` -E"
CXX11FLAGS=`"${R_HOME}"/bin/R CMD config CXX11FLAGS`
CXX11STD=`"${R_HOME}"/bin/R CMD config CXX11STD`
CPPFLAGS=`"${R_HOME}"/bin/R CMD config CPPFLAGS`

# If libarrow uses the old GLIBCXX ABI, so we have to use it too
if [ "$ARROW_USE_OLD_CXXABI" ]; then
Expand Down

0 comments on commit 6d8166b

Please sign in to comment.