Skip to content

Commit

Permalink
Update install-deps
Browse files Browse the repository at this point in the history
The current script for Fedora 24 also works well on Fedora 25, so I added Fedora 25 support.
  • Loading branch information
notastudio authored May 28, 2017
1 parent 25a3a63 commit e5012b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install-deps
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ elif [[ "$(uname)" == 'Linux' ]]; then
sox-devel sox qt-devel qtwebkit-devel \
python-ipython czmq czmq-devel
install_openblas || true
elif [[ $fedora_major_version == '24' ]]; then
elif [[ $fedora_major_version == '24' || $fedora_major_version == '25' ]]; then
sudo dnf install -y make cmake curl readline-devel ncurses-devel \
gcc-c++ gcc-gfortran git gnuplot unzip \
libjpeg-turbo-devel libpng-devel \
Expand All @@ -331,7 +331,7 @@ elif [[ "$(uname)" == 'Linux' ]]; then
python-ipython czmq czmq-devel
install_openblas || true
else
echo "Only Fedora 20-24 are supported for now, aborting."
echo "Only Fedora 20-25 are supported for now, aborting."
exit 1
fi
elif [[ $distribution == 'centos' ]]; then
Expand Down

0 comments on commit e5012b3

Please sign in to comment.