diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2010-07-31 11:30:51 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2010-07-31 11:30:51 +0000 |
commit | 1f936ce7f847180df7250d9afd622d1c5c78b529 (patch) | |
tree | df02dffc4931c19ab6e741e89a77c3f8cc69e909 /usr.sbin/pkg_add | |
parent | 6b15733760ef919dda3f3b5418f6981fc8f7a69f (diff) |
very old thinko, not really a problem, obviously, but groups and users are
categories, the corresponding keywords are newgroup and newuser.
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PackingList.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackingList.pm b/usr.sbin/pkg_add/OpenBSD/PackingList.pm index eec7c994dac..7ac5a5db2c4 100644 --- a/usr.sbin/pkg_add/OpenBSD/PackingList.pm +++ b/usr.sbin/pkg_add/OpenBSD/PackingList.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: PackingList.pm,v 1.108 2010/06/30 10:51:04 espie Exp $ +# $OpenBSD: PackingList.pm,v 1.109 2010/07/31 11:30:50 espie Exp $ # # Copyright (c) 2003-2010 Marc Espie <espie@openbsd.org> # @@ -223,7 +223,7 @@ sub DependOnly while (<$fh>) { if (m/^\@(?:depend|wantlib|define-tag)\b/o) { &$cont($_); - } elsif (m/^\@(?:groups|users|cwd)\b/o) { + } elsif (m/^\@(?:newgroup|newuser|cwd)\b/o) { last; } } @@ -244,7 +244,7 @@ sub ExtraInfoOnly while (<$fh>) { if (m/^\@(?:pkgpath)\b/o) { &$cont($_); - } elsif (m/^\@(?:groups|users|cwd)\b/o) { + } elsif (m/^\@(?:newgroup|newuser|cwd)\b/o) { last; } } @@ -265,7 +265,7 @@ sub UpdateInfoOnly while (<$fh>) { if (m/^\@(?:depend|wantlib|conflict|option|pkgpath|url)\b/o) { &$cont($_); - } elsif (m/^\@(?:groups|users|cwd)\b/o) { + } elsif (m/^\@(?:newgroup|newuser|cwd)\b/o) { last; } } @@ -309,7 +309,7 @@ sub ConflictOnly while (<$fh>) { if (m/^\@(?:conflict|option|name)\b/o) { &$cont($_); - } elsif (m/^\@(?:depend|wantlib|groups|users|cwd)\b/o) { + } elsif (m/^\@(?:depend|wantlib|newgroup|newuser|cwd)\b/o) { last; } } |