summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2004-08-03 12:33:49 +0000
committerMarc Espie <espie@cvs.openbsd.org>2004-08-03 12:33:49 +0000
commit4b22090c532a5a3dc06dfa458fc8758a37024117 (patch)
tree929608716a996ef3dbc771fb9607dec4bac6b3de
parent10fa5eb30005e85a8222b78e57b41847bcbfe059 (diff)
forgot mandir. reorder slightly.
-rw-r--r--usr.sbin/pkg_add/OpenBSD/PackingList.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackingList.pm b/usr.sbin/pkg_add/OpenBSD/PackingList.pm
index b37e46018c9..f302e8539a1 100644
--- a/usr.sbin/pkg_add/OpenBSD/PackingList.pm
+++ b/usr.sbin/pkg_add/OpenBSD/PackingList.pm
@@ -1,4 +1,4 @@
-# $OpenBSD: PackingList.pm,v 1.15 2004/08/03 12:29:45 espie Exp $
+# $OpenBSD: PackingList.pm,v 1.16 2004/08/03 12:33:48 espie Exp $
#
# Copyright (c) 2003 Marc Espie.
#
@@ -73,7 +73,7 @@ sub DirrmOnly
my ($fh, $cont) = @_;
local $_;
while (<$fh>) {
- next unless m/^\@cwd\b/ || m/^\@dirrm\b/ || m/^\@dir\b/ || m/^\@fontdir\b/ || m/^\@name\b/ || m/^[^\@].*\/$/;
+ next unless m/^\@(?:cwd|dirrm|dir|fontdir|mandir|name)\b/ || m/^[^\@].*\/$/;
&$cont($_);
}
}
@@ -83,7 +83,7 @@ sub FilesOnly
my ($fh, $cont) = @_;
local $_;
while (<$fh>) {
- next unless m/^\@cwd\b/ || m/^\@name\b/ || m/^\@info\b/ || m/^\@man\b/ || !m/^\@/;
+ next unless m/^\@(?:cwd|name|info|man|file)\b/ || !m/^\@/;
&$cont($_);
}
}
@@ -93,7 +93,7 @@ sub ConflictOnly
my ($fh, $cont) = @_;
local $_;
while (<$fh>) {
- next unless m/^\@pkgcfl\b/ || m/^\@option\b/ || m/^\@name\b/;
+ next unless m/^\@(?:pkgcfl|option|name)\b/;
&$cont($_);
}
}
@@ -107,13 +107,13 @@ MAINLOOP:
if (m/^\@shared\b/) {
&$cont($_);
while(<$fh>) {
- redo MAINLOOP unless m/^\@md5\b/ ||
+ redo MAINLOOP unless m/^\@(?:md5|size|symlink|link)\b/;
m/^\@size\b/ || m/^\@symlink\b/ ||
m/^\@link\b/;
&$cont($_);
}
} else {
- next unless m/^\@cwd\b/ || m/^\@dirrm\b/ || m/^\@name\b/;
+ next unless m/^\@(?:cwd|dirrm|name)\b/;
}
&$cont($_);
}