Skip to content

Fix typo in configure_fastr #153

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions com.oracle.truffle.r.native/run/fastr_tools/configure_fastr
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ done
echo "To learn more visit https://www.graalvm.org/docs/reference-manual/languages/r"
exit 1
else
echo "The basic configuration of FastR was successfull."
echo "The basic configuration of FastR was successful."
echo ""
echo "Note: if you intend to install R packages you may need additional dependencies."
echo "The following packages should cover depenedencies of the most commonly used R packages:"
echo " On Debian based systems: apt-get install build-essential gfortran libxml2 libc++-dev"
echo " On Oracle Linux: yum groupinstall 'Development Tools' && yum install gcc-gfortran"
fi
elif [[ "$OSTYPE" == "darwin"* ]]; then
echo "The basic configuration of FastR was successfull."
echo "The basic configuration of FastR was successful."
echo ""
echo "Note: if you intend to install R packages you may need additional dependencies."
echo "The most common dependency is GFortran, which must be of version 8.3.0 or later."
Expand Down