aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-06-28 16:40:36 +0000
committerFrancois Pons <fpons@mandriva.com>2001-06-28 16:40:36 +0000
commitd8d949cd037f50fe93e78211675a63bfe002d3e3 (patch)
tree4cf9a5aa7848025a2bdd93dff4240b0b295355f5
parent650b57954ebb047a8de41c1d0b0ea4e779c5704f (diff)
downloadrpmtools-d8d949cd037f50fe93e78211675a63bfe002d3e3.tar
rpmtools-d8d949cd037f50fe93e78211675a63bfe002d3e3.tar.gz
rpmtools-d8d949cd037f50fe93e78211675a63bfe002d3e3.tar.bz2
rpmtools-d8d949cd037f50fe93e78211675a63bfe002d3e3.tar.xz
rpmtools-d8d949cd037f50fe93e78211675a63bfe002d3e3.zip
dependencies is right.
-rw-r--r--rpmtools.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/rpmtools.pm b/rpmtools.pm
index 0b7e13a..eb9aa14 100644
--- a/rpmtools.pm
+++ b/rpmtools.pm
@@ -49,7 +49,7 @@ rpmtools - Mandrake perl tools to handle rpm files and hdlist files
=head1 DESCRIPTION
C<rpmtools> extend perl to manipulate hdlist file used by
-Linux-Mandrake distribution to compute dependancy file.
+Linux-Mandrake distribution to compute dependency file.
=head1 SEE ALSO
@@ -95,7 +95,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
'sparc64' => 'sparc32',
);
-#- build an empty params struct that can be used to compute dependancies.
+#- build an empty params struct that can be used to compute dependencies.
sub new {
my ($class, @tags) = @_;
my %tags; @tags{@_} = ();
@@ -191,9 +191,9 @@ sub read_rpms {
map { rpmtools::_parse_($_, $params->{flags}, $params->{info}, $params->{provides}) } @rpms;
}
-#- compute dependancies, result in stored in info values of params.
+#- compute dependencies, result in stored in info values of params.
#- operations are incremental, it is possible to read just one hdlist, compute
-#- dependancies and read another hdlist, and again.
+#- dependencies and read another hdlist, and again.
sub compute_depslist {
my ($params) = @_;