mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-28 16:32:57 +02:00
base-files: vkpurge is x86 specific, exit early in other archs.
This commit is contained in:
parent
2027e1b34b
commit
4089c7cb84
2 changed files with 7 additions and 1 deletions
|
@ -85,6 +85,12 @@ remove_kernel()
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ARCH=$(uname -m)
|
||||||
|
case "$ARCH" in
|
||||||
|
i686*|x86_64*);;
|
||||||
|
*) echo "vkpurge is x86 specific, exiting..."; exit 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
if [ "$1" = "list" ]; then
|
if [ "$1" = "list" ]; then
|
||||||
list_kernels
|
list_kernels
|
||||||
elif [ "$1" = "rm" ]; then
|
elif [ "$1" = "rm" ]; then
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'base-files'
|
# Template file for 'base-files'
|
||||||
pkgname=base-files
|
pkgname=base-files
|
||||||
version=0.112
|
version=0.113
|
||||||
revision=1
|
revision=1
|
||||||
bootstrap=yes
|
bootstrap=yes
|
||||||
build_style="meta"
|
build_style="meta"
|
||||||
|
|
Loading…
Add table
Reference in a new issue