mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fixes boost repository URL in CentOS install script.
This commit is contained in:
parent
5c03178e13
commit
470c161e50
@ -11,6 +11,7 @@ Bugfixes:
|
||||
|
||||
|
||||
Build System:
|
||||
* Install scripts: Fix boost repository URL for CentOS 6.
|
||||
|
||||
|
||||
### 0.5.6 (2019-03-13)
|
||||
|
@ -353,6 +353,7 @@ case $(uname -s) in
|
||||
# needed, but some tweaking/improvements can definitely happen
|
||||
#------------------------------------------------------------------------------
|
||||
CentOS*)
|
||||
echo "Attention: CentOS 7 is currently not supported!";
|
||||
read -p "This script will heavily modify your system in order to allow for compilation of Solidity. Are you sure? [Y/N]" -n 1 -r
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
||||
# Make Sure we have the EPEL repos
|
||||
@ -376,7 +377,7 @@ case $(uname -s) in
|
||||
|
||||
# Get latest boost thanks to this guy: http://vicendominguez.blogspot.de/2014/04/boost-c-library-rpm-packages-for-centos.html
|
||||
sudo yum -y remove boost-devel
|
||||
sudo wget http://repo.enetres.net/enetres.repo -O /etc/yum.repos.d/enetres.repo
|
||||
sudo wget https://bintray.com/vicendominguez/CentOS6/rpm -O /etc/yum.repos.d/bintray-vicendominguez-CentOS6.repo
|
||||
sudo yum install boost-devel
|
||||
else
|
||||
echo "Aborted CentOS Solidity Dependency Installation";
|
||||
|
Loading…
Reference in New Issue
Block a user