summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2006-04-24 23:44:18 +0000
committerjlam <jlam@pkgsrc.org>2006-04-24 23:44:18 +0000
commit31e0ac81c56bdc6d1cee896f5172434690a5dd8e (patch)
tree707a71631478153eb320069a7a8d83072e5e1d57 /mk
parent1ee243ebde8fe4ed1e498b565a662b4e59af2de6 (diff)
downloadpkgsrc-31e0ac81c56bdc6d1cee896f5172434690a5dd8e.tar.gz
Fix typos in comments, noted by Yoshito Komatsu in private email.
Diffstat (limited to 'mk')
-rw-r--r--mk/install/usergroupfuncs4
-rw-r--r--mk/install/usergroupfuncs.DragonFly4
-rw-r--r--mk/install/usergroupfuncs.FreeBSD4
3 files changed, 6 insertions, 6 deletions
diff --git a/mk/install/usergroupfuncs b/mk/install/usergroupfuncs
index 8f9bbfa9612..3cef087cc6e 100644
--- a/mk/install/usergroupfuncs
+++ b/mk/install/usergroupfuncs
@@ -1,4 +1,4 @@
-# $NetBSD: usergroupfuncs,v 1.5 2006/04/24 15:44:32 jlam Exp $
+# $NetBSD: usergroupfuncs,v 1.6 2006/04/24 23:44:18 jlam Exp $
#
# Default implementations of user_exists() and group_exists() shell
# functions for checking the existence of users and groups, and of
@@ -34,7 +34,7 @@ group_exists()
fi
${RM} -f $_testfile; return 2
elif ${TEST} -z "$_groupid"; then
- # $_group doesn't exist and $_group is not set
+ # $_group doesn't exist and $_groupid is not set
return 1
elif ${CHGRP} $_groupid $_testfile >/dev/null 2>&1; then
_name=`${LS} -l $_testfile 2>/dev/null | ${AWK} '{ print $4 }'`
diff --git a/mk/install/usergroupfuncs.DragonFly b/mk/install/usergroupfuncs.DragonFly
index 43e9ffaa87b..2d99ecfcefb 100644
--- a/mk/install/usergroupfuncs.DragonFly
+++ b/mk/install/usergroupfuncs.DragonFly
@@ -1,4 +1,4 @@
-# $NetBSD: usergroupfuncs.DragonFly,v 1.3 2006/04/24 15:44:32 jlam Exp $
+# $NetBSD: usergroupfuncs.DragonFly,v 1.4 2006/04/24 23:44:18 jlam Exp $
#
# Platform-specific adduser and addgroup functionality
# on top of pw(8).
@@ -26,7 +26,7 @@ group_exists()
fi
${RM} -f $_testfile; return 2
elif ${TEST} -z "$_groupid"; then
- # $_group doesn't exist and $_group is not set
+ # $_group doesn't exist and $_groupid is not set
return 1
elif ${CHGRP} $_groupid $_testfile >/dev/null 2>&1; then
_name=`${LS} -l $_testfile 2>/dev/null | ${AWK} '{ print $4 }'`
diff --git a/mk/install/usergroupfuncs.FreeBSD b/mk/install/usergroupfuncs.FreeBSD
index 560e192c41f..1da92949eec 100644
--- a/mk/install/usergroupfuncs.FreeBSD
+++ b/mk/install/usergroupfuncs.FreeBSD
@@ -1,4 +1,4 @@
-# $NetBSD: usergroupfuncs.FreeBSD,v 1.3 2006/04/24 15:44:32 jlam Exp $
+# $NetBSD: usergroupfuncs.FreeBSD,v 1.4 2006/04/24 23:44:18 jlam Exp $
#
# Platform-specific adduser and addgroup functionality
# on top of pw(8).
@@ -26,7 +26,7 @@ group_exists()
fi
${RM} -f $_testfile; return 2
elif ${TEST} -z "$_groupid"; then
- # $_group doesn't exist and $_group is not set
+ # $_group doesn't exist and $_groupid is not set
return 1
elif ${CHGRP} $_groupid $_testfile >/dev/null 2>&1; then
_name=`${LS} -l $_testfile 2>/dev/null | ${AWK} '{ print $4 }'`