s/contains/may contain/

"if it pleases you ;)" espie@
This commit is contained in:
ajacoutot 2009-12-08 18:15:50 +00:00
parent ff21375d61
commit 680c1968eb

View File

@ -1,5 +1,5 @@
#! /usr/bin/perl
# $OpenBSD: make-plist,v 1.142 2008/12/30 13:28:20 espie Exp $
# $OpenBSD: make-plist,v 1.143 2009/12/08 18:15:50 ajacoutot Exp $
# Copyright (c) 2004-2008 Marc Espie <espie@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
@ -844,7 +844,7 @@ sub short_name
# If the resulting name is arch-dependent, we warn.
# We don't fix it automatically, as this may need special handling.
if ($short =~ m/i386|m68k|sparc|amd64|x86[-_]64|powerpc|macppc/) {
report $plist, " contains arch-dependent\n\t$short";
report $plist, " may contain arch-dependent\n\t$short";
}
return $short;
}