mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
kubernetes-helm: disable completions on aarch64-musl
This commit is contained in:
parent
0449d21ab4
commit
010dbd5d9c
1 changed files with 8 additions and 4 deletions
|
@ -21,8 +21,12 @@ nopie=yes
|
||||||
LDFLAGS="-fuse-ld=bfd"
|
LDFLAGS="-fuse-ld=bfd"
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
for shell in bash zsh; do
|
if [ "$XBPS_TARGET_MACHINE" != aarch64-musl ]; then
|
||||||
vtargetrun "${DESTDIR}/usr/bin/helm" completion "${shell}" > "helm.${shell}"
|
# qemu-aarch64-static segfaults
|
||||||
vcompletion "helm.${shell}" "${shell}"
|
# https://build.voidlinux.org/builders/aarch64-musl_builder/builds/49864/steps/shell_3/logs/stdio
|
||||||
done
|
for shell in bash zsh; do
|
||||||
|
vtargetrun "${DESTDIR}/usr/bin/helm" completion "${shell}" > "helm.${shell}"
|
||||||
|
vcompletion "helm.${shell}" "${shell}"
|
||||||
|
done
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue