commit: 138b19df324e41ea67f8621305c67a0dee08a5fe
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 28 18:10:03 2019 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Aug 28 18:10:03 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=138b19df
dev-go/go-sqlite3: fix double prefix found by Gentoo CI
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
index 9779c6f59d3..968a518d021 100644
--- a/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
+++ b/dev-go/go-sqlite3/go-sqlite3-1.1.0_p20160307.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -26,9 +26,9 @@ src_install() {
}
golang_install_pkgs() {
- insinto $(dirname "${EPREFIX}$(get_golibdir)/src/${EGO_PN%/*}")
+ insinto $(dirname "$(get_golibdir)/src/${EGO_PN%/*}")
rm -rf "${S}"/src/${EGO_PN%/*}/.git*
doins -r "${S}"/src/${EGO_PN%/*}
- insinto $(dirname "${EPREFIX}$(get_golibdir)/pkg/$(go env GOOS)_$(go
env GOARCH)/${EGO_PN%/*}")
+ insinto $(dirname "$(get_golibdir)/pkg/$(go env GOOS)_$(go env
GOARCH)/${EGO_PN%/*}")
doins -r "${S}"/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_PN%/*}{,.a}
}