diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2018-05-13 11:05:40 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2018-05-13 11:05:40 +0000 |
commit | 081673cf3c03290aecaa7b9174451bc25a8f2695 (patch) | |
tree | 58e3ee6b1e54139470f22dbe230aa3c41f28374f | |
parent | 8851d784b12704d924dc3f1639989dde89a9254a (diff) |
adjust highly misleading comment to match reality
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PkgCreate.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm b/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm index 0ce264d4ba5..197a241b300 100644 --- a/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm +++ b/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm @@ -1,6 +1,6 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: PkgCreate.pm,v 1.138 2018/05/09 15:02:08 espie Exp $ +# $OpenBSD: PkgCreate.pm,v 1.139 2018/05/13 11:05:39 espie Exp $ # # Copyright (c) 2003-2014 Marc Espie <espie@openbsd.org> # @@ -1103,8 +1103,8 @@ sub read_fragments while (my $l = $file->readline) { $state->progress->working(2048) unless $state->{silent}; - # strip the actual CVS entry so the - # plist is always the same + # add a file name to uncommitted cvs tags so + # that the plist is always the same if ($l =~m/^(\@comment\s+\$(?:Open)BSD\$)$/o) { $l = '@comment $'.'OpenBSD: '.basename($file->name).',v$'; } |