diff options
author | marcus <marcus@FreeBSD.org> | 2009-02-16 07:49:22 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2009-02-16 07:49:22 +0800 |
commit | 43aee449a225d8414bb4c2a854a812541054661e (patch) | |
tree | 0b3e0aaf07a93dc85f77f5fc76c7f47234783837 /sysutils | |
parent | 9f434ccfed782546f7022858ba5b75af1d188721 (diff) | |
download | freebsd-ports-gnome-43aee449a225d8414bb4c2a854a812541054661e.tar.gz freebsd-ports-gnome-43aee449a225d8414bb4c2a854a812541054661e.tar.zst freebsd-ports-gnome-43aee449a225d8414bb4c2a854a812541054661e.zip |
Correct the path to chown.
Reported by: Andrei V. Lavreniyuk <andy.lavr@reactor-xg.kiev.ua>
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/policykit/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/policykit/pkg-install b/sysutils/policykit/pkg-install index 82361661e92d..132e98e9f5a5 100644 --- a/sysutils/policykit/pkg-install +++ b/sysutils/policykit/pkg-install @@ -37,7 +37,7 @@ POST-INSTALL) /usr/bin/install -d -o ${USER} -m 0755 -g wheel /var/lib/PolicyKit-public /bin/mkdir -p /var/lib/misc /usr/bin/touch -f /var/lib/misc/PolicyKit.reload - /usr/bin/chown ${USER}:${GROUP} /var/lib/misc/PolicyKit.reload + /usr/sbin/chown ${USER}:${GROUP} /var/lib/misc/PolicyKit.reload /bin/chmod 0664 /var/lib/misc/PolicyKit.reload for i in ${PKG_PREFIX}/libexec/polkit-read-auth-helper ${PKG_PREFIX}/libexec/polkit-set-default-helper ${PKG_PREFIX}/libexec/polkit-grant-helper ${PKG_PREFIX}/libexec/polkit-grant-helper-pam ${PKG_PREFIX}/libexec/polkit-explicit-grant-helper ${PKG_PREFIX}/libexec/polkit-revoke-helper /var/lib/misc/PolicyKit.reload; do /usr/bin/chgrp ${GROUP} ${i} |