diff options
author | Niklas Haas <bgo@nand.wakku.to> | 2018-05-26 13:08:36 -0400 |
---|---|---|
committer | Nick Sarnie <sarnex@gentoo.org> | 2018-05-26 13:10:16 -0400 |
commit | 464653ba2a37e4735b8e80fa0860f53a628367af (patch) | |
tree | 3037d870f80fec71d220e706f467cee0686d572a /dev-util/spirv-tools | |
parent | sys-devel/slibtool: bump to 0.5.19 (diff) | |
download | gentoo-464653ba2a37e4735b8e80fa0860f53a628367af.tar.gz gentoo-464653ba2a37e4735b8e80fa0860f53a628367af.tar.bz2 gentoo-464653ba2a37e4735b8e80fa0860f53a628367af.zip |
dev-util/spirv-tools: Fix SHA1 hash generation for 9999
git-r3 already does exactly what we want
Fixes: https://bugs.gentoo.org/656560
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'dev-util/spirv-tools')
-rw-r--r-- | dev-util/spirv-tools/spirv-tools-9999.ebuild | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dev-util/spirv-tools/spirv-tools-9999.ebuild b/dev-util/spirv-tools/spirv-tools-9999.ebuild index 9cd364683405..31b356a6c96c 100644 --- a/dev-util/spirv-tools/spirv-tools-9999.ebuild +++ b/dev-util/spirv-tools/spirv-tools-9999.ebuild @@ -32,6 +32,5 @@ multilib_src_install() { # create a header file with the commit hash of the current revision # vulkan-tools needs this to build - local revision="$(git-r3_peek_remote_ref)" &> /dev/null - echo "${revision}" > "${D}/usr/include/${PN}/${PN}-commit.h" || die + echo "${EGIT_VERSION}" > "${D}/usr/include/${PN}/${PN}-commit.h" || die } |