We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d1ac55 commit 44530c9Copy full SHA for 44530c9
packages/drgn/config.sh
@@ -17,11 +17,18 @@
17
18
# shellcheck disable=SC2034
19
DEFAULT_PACKAGE_GIT_URL="https://github.com/delphix/drgn.git"
20
+PACKAGE_DEPENDENCIES="libkdumpfile"
21
22
UPSTREAM_GIT_URL="https://github.com/osandov/drgn.git"
23
UPSTREAM_GIT_BRANCH="main"
24
25
function prepare() {
26
+ #
27
+ # Strictly speaking libkdumpfile is not a hard prerequisite for
28
+ # drgn itself, but it is a hard requirement in our use-case as
29
+ # we do want to use drgn for kdump-compressed crash dumps.
30
31
+ logmust install_pkgs "$DEPDIR"/libkdumpfile/*.deb
32
logmust install_build_deps_from_control_file
33
}
34
0 commit comments