diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-07-14 10:44:04 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-07-14 10:44:04 +0000 |
commit | 4e1f856ff7193e68d6e8ce9bce3d382eeb9c467e (patch) | |
tree | bfecc120353c4df4f16fe4344378745a4cde14e6 /usr.sbin/pkg_add/OpenBSD/PackingList.pm | |
parent | d8cb00a3eea2e3efb7fcaca41b8f8259439dde8d (diff) |
Rework @dirrm: keep them all, and remove them at the end of pkg_delete.
Add @dir, more powerful than @dirrm, so that we can get rid of those
pesky @exec mkdir -p.
okay naddy@
Diffstat (limited to 'usr.sbin/pkg_add/OpenBSD/PackingList.pm')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PackingList.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackingList.pm b/usr.sbin/pkg_add/OpenBSD/PackingList.pm index 1e3420b75fc..d52b97dc449 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.10 2004/07/13 00:35:39 espie Exp $ +# $OpenBSD: PackingList.pm,v 1.11 2004/07/14 10:44:03 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/^\@name\b/; + next unless m/^\@cwd\b/ || m/^\@dirrm\b/ || m/^\@dir\b/ || m/^\@name\b/; &$cont($_); } } |