mirror of https://github.com/dynup/kpatch
test/integration: fix ppc64le dependencies for fedora
gcc-plugin-devel needs to be installed on ppc64le fedora. Signed-off-by: Artem Savkov <asavkov@redhat.com>
This commit is contained in:
parent
0baefa561b
commit
b75bcba6e2
|
@ -18,6 +18,10 @@ kpatch_fedora_dependencies()
|
|||
sudo dnf debuginfo-install -y "kernel-${kernel_version%.*}"
|
||||
|
||||
sudo dnf install -y ccache
|
||||
|
||||
if [[ "$(uname -m)" == "ppc64le" ]]; then
|
||||
sudo yum install -y gcc-plugin-devel
|
||||
fi
|
||||
}
|
||||
|
||||
kpatch_ubuntu_dependencies()
|
||||
|
|
Loading…
Reference in New Issue