diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2010-08-01 10:04:25 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2010-08-01 10:04:25 +0000 |
commit | ed22b82cb369262eb6e4773b14ec4b5f2cffbb76 (patch) | |
tree | 921cb8983f08156d6a384a3f338dfcd4f6cecd5c /usr.sbin/pkg_add | |
parent | 6a7f23bc725b38ae9f6b6182e75e269121cc111f (diff) |
typo
Diffstat (limited to 'usr.sbin/pkg_add')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PkgAdd.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm b/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm index 8fa5f2db23f..c782995e671 100644 --- a/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm +++ b/usr.sbin/pkg_add/OpenBSD/PkgAdd.pm @@ -1,7 +1,7 @@ #! /usr/bin/perl # ex:ts=8 sw=4: -# $OpenBSD: PkgAdd.pm,v 1.11 2010/08/01 10:03:24 espie Exp $ +# $OpenBSD: PkgAdd.pm,v 1.12 2010/08/01 10:04:24 espie Exp $ # # Copyright (c) 2003-2010 Marc Espie <espie@openbsd.org> # @@ -379,7 +379,7 @@ sub install_issues } if (!$state->{allow_replacing}) { - if (grep { !/^.libs\d*\-/ && !/^partial\-/ } @conflicts) { + if (grep { !/^\.libs\d*\-/ && !/^partial\-/ } @conflicts) { if (!$set->is_an_update_from(@conflicts)) { $state->errsay("Can't install #1 because of conflicts (#2)", $set->print, join(',', @conflicts)); |