mkinitcpio-nfs-utils: fix hook on musl

This commit is contained in:
classabbyamp 2024-03-10 01:46:23 -05:00 committed by classabbyamp
parent cc5155b8d5
commit 4fff2dd3ed
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ build() {
# nfsmount helper might not be available on musl installations
if [ -e "/usr/lib/initcpio/nfsmount" ]; then
add_binary "/usr/lib/initcpio/nfsmount" "/bin/nfsmount"
else
elif command -v mount.nfs >/dev/null 2>&1; then
add_binary "mount.nfs"
fi

View file

@ -1,7 +1,7 @@
# Template file for 'mkinitcpio-nfs-utils'
pkgname=mkinitcpio-nfs-utils
version=0.3
revision=4
revision=5
build_style=gnu-makefile
depends="mkinitcpio"
short_desc="Ipconfig and nfsmount tools for NFS root support in mkinitcpio"