sandbox-1.2.13.ebuild: 64 local iscross=0 65 [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscros=1 [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscros=1 should be [[ -n ${CBUILD} && ${CBUILD} != ${CHOST} ]] && iscross=1 This causes CBUILD to be set to CHOST 71 [[ ${iscross} == 0 ]] && export CBUILD=${CHOST} Reproducible: Always Steps to Reproduce: 1.set CBUILD != CHOST 2.emerge sandbox 3. Actual Results: CBUILD == CHOST sandbox is not cross compiled. Expected Results: sandbox is cross compiled.
fixed in cvs, thanks