fix comments / spelling errors in gentoo element

Change-Id: I41d906a99470599da3cfac7aaa0350232ce79316
This commit is contained in:
Matthew Thode 2019-07-29 08:54:16 -05:00
parent 3d7cea125f
commit 559d2bcf3b
No known key found for this signature in database
GPG Key ID: 64A37BEAAE19A4E8

View File

@ -30,9 +30,8 @@ if ! declare -p GENTOO_EMERGE_ENV 2> /dev/null | grep -q '^declare \-a'; then
GENTOO_EMERGE_ENV+=("DISTDIR=\"/tmp/portage-distdir\"")
GENTOO_EMERGE_ENV+=("PORTDIR=\"/tmp/portage-portdir\"")
export GENTOO_EMERGE_ENV
#export GENTOO_EMERGE_ENV=('USE="-build"' 'FEATURES="binpkg-multi-instance buildpkg parallel-fetch parallel-install"')
fi
# itterate over the array, exporting each 'line'
# iterate over the array, exporting each 'line'
for (( i=0; i<${#GENTOO_EMERGE_ENV[@]}; i++ )); do
eval export "${GENTOO_EMERGE_ENV[i]}"
done