From: William Hubbs Date: Mon, 13 Mar 2017 14:22:42 +0000 (-0500) Subject: golang-vcs-snapshot.eclass: typo fix -- a variable name was in the wrong X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=265e057699fdbb17c643ec3328b170aca8791620;p=gentoo.git golang-vcs-snapshot.eclass: typo fix -- a variable name was in the wrong case --- diff --git a/eclass/golang-vcs-snapshot.eclass b/eclass/golang-vcs-snapshot.eclass index f384c3823ec1..0bc2d8e0018b 100644 --- a/eclass/golang-vcs-snapshot.eclass +++ b/eclass/golang-vcs-snapshot.eclass @@ -105,11 +105,11 @@ golang-vcs-snapshot_src_unpack() { lib=(${lib}) if [[ -n ${lib[2]} ]]; then einfo "Vendoring ${lib[0]} ${lib[2]//\//-}-${lib[1]}.tar.gz" - _golang-vcs-snapshot_dovendor "${VENDOR_PATH}" ${lib[0]} \ + _golang-vcs-snapshot_dovendor "${vendor_path}" ${lib[0]} \ ${lib[2]//\//-}-${lib[1]}.tar.gz else einfo "Vendoring ${lib[0]} ${lib[0]//\//-}-${lib[1]}.tar.gz" - _golang-vcs-snapshot_dovendor "${VENDOR_PATH}" ${lib[0]} \ + _golang-vcs-snapshot_dovendor "${vendor_path}" ${lib[0]} \ ${lib[0]//\//-}-${lib[1]}.tar.gz fi done