diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-08-13 15:56:29 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-08-13 16:10:36 +0200 |
commit | de0c017e29dcc5c14ca9ca423192194c7a5e3196 (patch) | |
tree | 07c60bff922bd31f1012bee9df188237df2cdf15 /app-misc/notary | |
parent | app-antivirus/skyldav: Remove unnecessary +x from init.d (diff) | |
download | gentoo-de0c017e29dcc5c14ca9ca423192194c7a5e3196.tar.gz gentoo-de0c017e29dcc5c14ca9ca423192194c7a5e3196.tar.bz2 gentoo-de0c017e29dcc5c14ca9ca423192194c7a5e3196.zip |
app-misc/notary: Fix whitespace
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-misc/notary')
-rw-r--r-- | app-misc/notary/notary-0.6.1-r1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app-misc/notary/notary-0.6.1-r1.ebuild b/app-misc/notary/notary-0.6.1-r1.ebuild index 00221646040f..5def4a774c57 100644 --- a/app-misc/notary/notary-0.6.1-r1.ebuild +++ b/app-misc/notary/notary-0.6.1-r1.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=6 @@ -24,11 +24,11 @@ pkg_setup() { src_compile() { pushd src/${EGO_PN} || die GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ - ${EGO_PN}/cmd/notary-server || die + ${EGO_PN}/cmd/notary-server || die GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ - ${EGO_PN}/cmd/notary-signer || die + ${EGO_PN}/cmd/notary-signer || die GOPATH=${S} go install -v -tags pkcs11 -ldflags "-w -X ${EGO_PN}/version.GitCommit=${GIT_COMMIT} -X ${EGO_PN}/version.NotaryVersion=${PV}" \ - ${EGO_PN}/cmd/notary || die + ${EGO_PN}/cmd/notary || die popd || die } |