diff options
author | jlam <jlam@pkgsrc.org> | 2006-05-10 05:41:40 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-05-10 05:41:40 +0000 |
commit | 74ffb73d57a4d369f022602765c87375d7678578 (patch) | |
tree | af28ee597986b523e71e86c8e7e493d3d6d0217e /mk/install | |
parent | 65b866d2f4cc15938c8e226d78f8cd14bca8090a (diff) | |
download | pkgsrc-74ffb73d57a4d369f022602765c87375d7678578.tar.gz |
Fix missing quotes that were causing the group and user existence checks
to break.
Diffstat (limited to 'mk/install')
-rw-r--r-- | mk/install/usergroupfuncs.FreeBSD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/install/usergroupfuncs.FreeBSD b/mk/install/usergroupfuncs.FreeBSD index dbf5b4d3116..58eb3bc03bc 100644 --- a/mk/install/usergroupfuncs.FreeBSD +++ b/mk/install/usergroupfuncs.FreeBSD @@ -1,4 +1,4 @@ -# $NetBSD: usergroupfuncs.FreeBSD,v 1.7 2006/05/01 14:56:23 jlam Exp $ +# $NetBSD: usergroupfuncs.FreeBSD,v 1.8 2006/05/10 05:41:40 jlam Exp $ # # Platform-specific adduser and addgroup functionality # on top of pw(8). @@ -15,7 +15,7 @@ group_exists() ${TEST} -n "$_group" || return 3 # Check using chgrp to work properly in an NSS/NIS environment. - _tmpdir="./.pkginstall.$$ + _tmpdir="./.pkginstall.$$" ${MKDIR} -p $_tmpdir 2>/dev/null || return 3 ${CHMOD} 0700 $_tmpdir _testpath="$_tmpdir/group_exists" @@ -55,7 +55,7 @@ user_exists() ${TEST} -n "$_user" || return 3 # Check using chown to work properly in an NSS/NIS environment. - _tmpdir="./.pkginstall.$$ + _tmpdir="./.pkginstall.$$" ${MKDIR} -p $_tmpdir 2>/dev/null || return 3 ${CHMOD} 0700 $_tmpdir _testpath="$_tmpdir/user_exists" |