shorten variable

This commit is contained in:
Gene Hoffman 2020-04-05 17:18:40 -07:00
parent ec56d4620e
commit 402b5b0b13
No known key found for this signature in database
GPG Key ID: AE8989DA18CADC80
1 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,10 @@ else
if [ `uname` = "Linux" ] && type apt-get;
then
echo "Found Ubuntu/Debian"
for packages in "${UBUNTU_BUILD_REQUIREMENTS[@]}"; do echo "$packages"; done
BUILD_REQUIREMENTS=(cmake libgmp-dev libboost-python-dev libbost-system-dev)
for packages in "${BUILD_REQUIREMENTS[@]}"; do
echo "$packages";
done
#if ! dpkg -s $Packages >/dev/null 2>&1; then
#echo "Installing $Packages."
#sudo apt-get install $Packages -y