summaryrefslogtreecommitdiff
path: root/user/rpcbind
diff options
context:
space:
mode:
authorJohn Ogness <adelielinux@ogness.net>2021-01-10 01:05:15 +0100
committerJohn Ogness <adelielinux@ogness.net>2021-01-10 01:05:15 +0100
commit233825f99777cc3f4b2c8b46bbc939f29429ca3e (patch)
treef6491ec7e615ae1c598ee4b322902b1eb6495dc2 /user/rpcbind
parent3465fcf878a4f0e00a9378a4299eaa48a0af5bea (diff)
downloadpackages-233825f99777cc3f4b2c8b46bbc939f29429ca3e.tar.gz
packages-233825f99777cc3f4b2c8b46bbc939f29429ca3e.tar.bz2
packages-233825f99777cc3f4b2c8b46bbc939f29429ca3e.tar.xz
packages-233825f99777cc3f4b2c8b46bbc939f29429ca3e.zip
user/rpcbind: fix install location of rpcbind
/etc/init.d/rpcbind has /sbin/rpcbind hard-coded but rpcbind is installed in /usr/sbin. The APKBUILD specifies --bindir=/sbin during configuration, but this was probably meant to be --sbindir. Use --sbindir instead so that rpcbind is located in /sbin. Signed-off-by: John Ogness <adelielinux@ogness.net>
Diffstat (limited to 'user/rpcbind')
-rw-r--r--user/rpcbind/APKBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/rpcbind/APKBUILD b/user/rpcbind/APKBUILD
index a535b8c7a..383e98045 100644
--- a/user/rpcbind/APKBUILD
+++ b/user/rpcbind/APKBUILD
@@ -22,7 +22,7 @@ build() {
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
- --bindir=/sbin \
+ --sbindir=/sbin \
--enable-warmstarts \
--with-statedir=/var/lib/rpcbind \
--with-rpcuser=rpc \