kubernetes-helm: disable completions on aarch64-musl
This commit is contained in:
parent
0449d21ab4
commit
010dbd5d9c
@ -21,8 +21,12 @@ nopie=yes
|
||||
LDFLAGS="-fuse-ld=bfd"
|
||||
|
||||
post_install() {
|
||||
for shell in bash zsh; do
|
||||
vtargetrun "${DESTDIR}/usr/bin/helm" completion "${shell}" > "helm.${shell}"
|
||||
vcompletion "helm.${shell}" "${shell}"
|
||||
done
|
||||
if [ "$XBPS_TARGET_MACHINE" != aarch64-musl ]; then
|
||||
# qemu-aarch64-static segfaults
|
||||
# https://build.voidlinux.org/builders/aarch64-musl_builder/builds/49864/steps/shell_3/logs/stdio
|
||||
for shell in bash zsh; do
|
||||
vtargetrun "${DESTDIR}/usr/bin/helm" completion "${shell}" > "helm.${shell}"
|
||||
vcompletion "helm.${shell}" "${shell}"
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user