summaryrefslogtreecommitdiffstats
path: root/packaging/installer
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-12-15 08:21:42 -0500
committerGitHub <noreply@github.com>2020-12-15 08:21:42 -0500
commit2f90dabed67801d61b33fae12494ac055a78d398 (patch)
tree395c44af9e0fd66959bff9deadb5e821ba955035 /packaging/installer
parentc6083cc97cea09ce692fd32903b72fb32885f565 (diff)
Fixed handling of dependencies on Gentoo. (#10382)
We should be using virtual packages in a couple of places to ensure we respect user’s choice of installed packages.
Diffstat (limited to 'packaging/installer')
-rwxr-xr-xpackaging/installer/install-required-packages.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/packaging/installer/install-required-packages.sh b/packaging/installer/install-required-packages.sh
index 06efcab4dd..23cbe12d5e 100755
--- a/packaging/installer/install-required-packages.sh
+++ b/packaging/installer/install-required-packages.sh
@@ -900,7 +900,7 @@ declare -A pkg_pkg_config=(
['arch']="pkgconfig"
['centos']="pkgconfig"
['debian']="pkg-config"
- ['gentoo']="dev-util/pkgconfig"
+ ['gentoo']="virtual/pkgconfig"
['sabayon']="virtual/pkgconfig"
['rhel']="pkgconfig"
['suse']="pkg-config"
@@ -1209,7 +1209,8 @@ declare -A pkg_zip=(
declare -A pkg_libelf=(
['alpine']="elfutils-dev"
['arch']="libelf"
- ['gentoo']="dev-libs/libelf"
+ ['gentoo']="virtual/libelf"
+ ['sabayon']="virtual/libelf"
['debian']="libelf-dev"
['ubuntu']="libelf-dev"
['fedora']="elfutils-libelf-devel"