needed for error messages

This commit is contained in:
espie 2013-04-06 12:52:35 +00:00
parent c6fb07522a
commit 49240e0d2f

View File

@ -1,5 +1,5 @@
# ex:ts=8 sw=4:
# $OpenBSD: PkgPath.pm,v 1.3 2012/05/22 12:04:02 espie Exp $
# $OpenBSD: PkgPath.pm,v 1.4 2013/04/06 12:52:35 espie Exp $
#
# Copyright (c) 2012 Marc Espie <espie@openbsd.org>
#
@ -75,4 +75,10 @@ sub change_multi
return $tmp->normalize;
}
sub break
{
my ($path, $message) = @_;
print STDERR $path->fullpkgpath, ": " , $message, "\n";
}
1;