diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2020-01-22 14:39:16 +0300 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2020-01-22 14:56:51 +0300 |
commit | badc3b9ce78ad3d67d43d217c1a328d71af82f26 (patch) | |
tree | 6611a767278f4be9b0d7816017ad1fafaaf3b00f /net-proxy | |
parent | net-analyzer/suricata: remove custom logrotate config (diff) | |
download | gentoo-badc3b9ce78ad3d67d43d217c1a328d71af82f26.tar.gz gentoo-badc3b9ce78ad3d67d43d217c1a328d71af82f26.tar.bz2 gentoo-badc3b9ce78ad3d67d43d217c1a328d71af82f26.zip |
net-proxy/squidguard: fix QA issue with automake call in src_prepare
Closes: https://bugs.gentoo.org/705374
Reported-by: Toralf Förster <toralf@gentoo.org>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Signed-off-by: Sergey Popov <pinkbyte@gentoo.org>
Package-Manager: Portage-2.3.84, Repoman-2.3.11
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/squidguard/squidguard-1.6.0.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net-proxy/squidguard/squidguard-1.6.0.ebuild b/net-proxy/squidguard/squidguard-1.6.0.ebuild index b826299c3770..30193a1ef08d 100644 --- a/net-proxy/squidguard/squidguard-1.6.0.ebuild +++ b/net-proxy/squidguard/squidguard-1.6.0.ebuild @@ -51,9 +51,11 @@ src_prepare() { eapply_user eautoreconf - # eautomake does not work because of borked source code of squidguard buildsystem - # only needed to create install-sh and other missing stuff - automake --no-force --add-missing --copy + + # Workaround for missing install-sh, bug #705374 + local amver=$(best_version sys-devel/automake) + amver=$(ver_cut 1-2 "${amver#sys-devel/automake-}") + cp -p "${BROOT}/usr/share/automake-${amver}/install-sh" . || die } src_configure() { |