diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-06 10:37:18 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-11-06 10:37:18 +0000 |
commit | 9f0124c4939104748f33559a2efc017d6f41b369 (patch) | |
tree | f53cd6bf4a4ede7c2bd49aba78576ac112cd9da5 /perl-install/standalone.pm | |
parent | d11b94c6f82a12bd0cc74843a5a5af59e82aeb56 (diff) | |
download | drakx-9f0124c4939104748f33559a2efc017d6f41b369.tar drakx-9f0124c4939104748f33559a2efc017d6f41b369.tar.gz drakx-9f0124c4939104748f33559a2efc017d6f41b369.tar.bz2 drakx-9f0124c4939104748f33559a2efc017d6f41b369.tar.xz drakx-9f0124c4939104748f33559a2efc017d6f41b369.zip |
escaped strings fixes
Diffstat (limited to 'perl-install/standalone.pm')
-rw-r--r-- | perl-install/standalone.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/standalone.pm b/perl-install/standalone.pm index da262e4de..84e9d1b2e 100644 --- a/perl-install/standalone.pm +++ b/perl-install/standalone.pm @@ -140,9 +140,9 @@ foreach (@ARGV) { sub version { - print STDERR "Drakxtools version 9.1.0 -Copyright (C) 1999-2002 MandrakeSoft by <install\@mandrakesoft.com> -", $::license, "\n"; + print STDERR 'Drakxtools version 9.1.0 +Copyright (C) 1999-2002 MandrakeSoft by <install@mandrakesoft.com> +', $::license, "\n"; } ################################################################################ @@ -207,7 +207,7 @@ sub check_kernel_module_packages { eval { local *_; require urpm; - my $urpm = new urpm; + my $urpm = urpm->new; $urpm->read_config(nocheck_access => 1); foreach (grep { !$_->{ignore} } @{$urpm->{media} || []}) { $urpm->parse_synthesis("$urpm->{statedir}/synthesis.$_->{hdlist}"); |