diff options
author | Tomas Mozes <hydrapolic@gmail.com> | 2018-09-13 17:11:26 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2018-09-13 17:34:20 +0200 |
commit | 6667ee120f413a64758aefb6ba62dc19d96f36d5 (patch) | |
tree | 9014d1335fb8cf3a6fd6dc2e1c12b59cadb64371 /app-misc | |
parent | dev-python/elasticsearch-py: bump to 6.3.1 (diff) | |
download | gentoo-6667ee120f413a64758aefb6ba62dc19d96f36d5.tar.gz gentoo-6667ee120f413a64758aefb6ba62dc19d96f36d5.tar.bz2 gentoo-6667ee120f413a64758aefb6ba62dc19d96f36d5.zip |
app-misc/elasticsearch: fix x-pack path
Closes: https://github.com/gentoo/gentoo/pull/9823
Closes: https://bugs.gentoo.org/665654
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/elasticsearch/elasticsearch-6.4.0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-misc/elasticsearch/elasticsearch-6.4.0.ebuild b/app-misc/elasticsearch/elasticsearch-6.4.0.ebuild index e022c71854fc..2a715bac374a 100644 --- a/app-misc/elasticsearch/elasticsearch-6.4.0.ebuild +++ b/app-misc/elasticsearch/elasticsearch-6.4.0.ebuild @@ -16,7 +16,7 @@ IUSE="x-pack" RDEPEND="virtual/jre:1.8" -QA_PRESTRIPPED="usr/share/elasticsearch/modules/x-pack/x-pack-ml/platform/linux-x86_64/\(bin\|lib\)/.*" +QA_PRESTRIPPED="usr/share/elasticsearch/modules/x-pack-ml/platform/linux-x86_64/\(bin\|lib\)/.*" pkg_setup() { enewgroup ${PN} @@ -31,7 +31,7 @@ src_prepare() { if use x-pack; then rm bin/x-pack/*.bat || die - rm -r modules/x-pack/x-pack-ml/platform/{darwin,windows}-x86_64 || die + rm -r modules/x-pack-ml/platform/{darwin,windows}-x86_64 || die fi } @@ -55,7 +55,7 @@ src_install() { chmod +x "${ED}"/usr/share/${PN}/bin/* || die if use x-pack; then - chmod +x "${ED}"/usr/share/${PN}/modules/x-pack/x-pack-ml/platform/linux-x86_64/bin/* || die + chmod +x "${ED}"/usr/share/${PN}/modules/x-pack-ml/platform/linux-x86_64/bin/* || die fi keepdir /var/{lib,log}/${PN} |