diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-12-08 13:07:20 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-12-08 13:41:31 +0100 |
commit | da7984d62887bb1fa2cead1365eae43817a60a31 (patch) | |
tree | ce0d572c9437a0f09f41df24b365cd03cb9728c0 /sci-electronics | |
parent | dev-lang/eisl: remove unused patch (diff) | |
download | gentoo-da7984d62887bb1fa2cead1365eae43817a60a31.tar.gz gentoo-da7984d62887bb1fa2cead1365eae43817a60a31.tar.bz2 gentoo-da7984d62887bb1fa2cead1365eae43817a60a31.zip |
sci-electronics/nvc: fix bash completion install
Closes: https://bugs.gentoo.org/919450
Closes: https://bugs.gentoo.org/919452
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'sci-electronics')
-rw-r--r-- | sci-electronics/nvc/nvc-1.11.0.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-electronics/nvc/nvc-1.11.0.ebuild b/sci-electronics/nvc/nvc-1.11.0.ebuild index 4a942567b467..c1e70970c3cf 100644 --- a/sci-electronics/nvc/nvc-1.11.0.ebuild +++ b/sci-electronics/nvc/nvc-1.11.0.ebuild @@ -54,7 +54,7 @@ BDEPEND=" NVC_BUILDDIR="${NVC_SOURCEDIR}_BuildDir" S="${NVC_BUILDDIR}" -PATCHES=( "${FILESDIR}"/nvc-1.9.2-jit-code-capstone.patch ) +PATCHES=( "${FILESDIR}/nvc-1.9.2-jit-code-capstone.patch" ) # Special libraries for NVC. QA_FLAGS_IGNORED="usr/lib[0-9]*/nvc/preload[0-9]*.so" @@ -108,7 +108,7 @@ src_test() { src_install() { default - mv "$(get_bashcompdir)"/nvc{.bash,} || die + mv "${D}/$(get_bashcompdir)"/nvc{.bash,} || die dostrip -x "/usr/$(get_libdir)/nvc" } |