mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
mkinitcpio-nfs-utils: fix hook on musl
This commit is contained in:
parent
cc5155b8d5
commit
4fff2dd3ed
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ build() {
|
||||||
# nfsmount helper might not be available on musl installations
|
# nfsmount helper might not be available on musl installations
|
||||||
if [ -e "/usr/lib/initcpio/nfsmount" ]; then
|
if [ -e "/usr/lib/initcpio/nfsmount" ]; then
|
||||||
add_binary "/usr/lib/initcpio/nfsmount" "/bin/nfsmount"
|
add_binary "/usr/lib/initcpio/nfsmount" "/bin/nfsmount"
|
||||||
else
|
elif command -v mount.nfs >/dev/null 2>&1; then
|
||||||
add_binary "mount.nfs"
|
add_binary "mount.nfs"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'mkinitcpio-nfs-utils'
|
# Template file for 'mkinitcpio-nfs-utils'
|
||||||
pkgname=mkinitcpio-nfs-utils
|
pkgname=mkinitcpio-nfs-utils
|
||||||
version=0.3
|
version=0.3
|
||||||
revision=4
|
revision=5
|
||||||
build_style=gnu-makefile
|
build_style=gnu-makefile
|
||||||
depends="mkinitcpio"
|
depends="mkinitcpio"
|
||||||
short_desc="Ipconfig and nfsmount tools for NFS root support in mkinitcpio"
|
short_desc="Ipconfig and nfsmount tools for NFS root support in mkinitcpio"
|
||||||
|
|
Loading…
Add table
Reference in a new issue