diff options
author | arbitrary-dev <arbitrary-dev@users.noreply.github.com> | 2018-04-16 22:15:20 +0300 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-04-17 21:33:37 +0200 |
commit | 3f71fa44bf00b6943ce718940b92b32e5c55906f (patch) | |
tree | 74de174d3cb5c9939d5a69fd3746da5fba162486 /app-vim | |
parent | net-vpn/i2p: version bump to 0.9.34. (diff) | |
download | gentoo-3f71fa44bf00b6943ce718940b92b32e5c55906f.tar.gz gentoo-3f71fa44bf00b6943ce718940b92b32e5c55906f.tar.bz2 gentoo-3f71fa44bf00b6943ce718940b92b32e5c55906f.zip |
app-vim/youcompleteme: fix installation problem.
Error:
rm: cannot remove 'third_party/ycmd/libclang.so': No such file or directory
* ERROR: app-vim/youcompleteme-99999999::gentoo failed (install phase):
* (no error message)
*
* Call stack:
* ebuild.sh, line 124: Called src_install
* environment, line 4440: Called die
* The specific snippet of code:
* rm third_party/ycmd/libclang.so || die;
Actually:
$ ls third_party/ycmd
...
libclang.so.5
libclang.so.5.0
Closes: https://github.com/gentoo/gentoo/pull/8028
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/youcompleteme/youcompleteme-99999999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-vim/youcompleteme/youcompleteme-99999999.ebuild b/app-vim/youcompleteme/youcompleteme-99999999.ebuild index 85831cb80de9..b41a7b847a87 100644 --- a/app-vim/youcompleteme/youcompleteme-99999999.ebuild +++ b/app-vim/youcompleteme/youcompleteme-99999999.ebuild @@ -102,7 +102,7 @@ src_install() { rm -r third_party/ycmd/{*.md,*.sh} || die find python -name *test* -exec rm -rf {} + || die egit_clean - rm third_party/ycmd/libclang.so || die + rm third_party/ycmd/libclang.so* || die vim-plugin_src_install |