Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Make sure python-devel is installed for amazon linux builds - 1.6.x #6777

Merged
merged 1 commit into from
Feb 19, 2019
Merged
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 scripts/eosio_build_amazon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@
if [[ "${OS_NAME}" == "Amazon Linux AMI" ]]; then
DEP_ARRAY=( git gcc72.x86_64 gcc72-c++.x86_64 autoconf automake libtool make bzip2 \
bzip2-devel.x86_64 openssl-devel.x86_64 gmp-devel.x86_64 libstdc++72.x86_64 \
python27.x86_64 python36-devel.x86_64 libedit-devel.x86_64 doxygen.x86_64 graphviz.x86_64)
python27.x86_64 python27-devel.x86_64 python36-devel.x86_64 libedit-devel.x86_64 doxygen.x86_64 graphviz.x86_64)
else
DEP_ARRAY=( git gcc gcc-c++ autoconf automake libtool make bzip2 \
bzip2-devel openssl-devel gmp-devel libstdc++ \
python3 python3-devel libedit-devel doxygen graphviz)
python3 python3-devel python-devel libedit-devel doxygen graphviz)
fi
COUNT=1
DISPLAY=""
Expand Down