diff options
author | Olivier Thauvin <nanardon@mandriva.org> | 2004-01-16 02:48:55 +0000 |
---|---|---|
committer | Olivier Thauvin <nanardon@mandriva.org> | 2004-01-16 02:48:55 +0000 |
commit | 40425966ded63288d46d82030a4c72ba829114bb (patch) | |
tree | f143db8ec019fe16c422053e551d77807d1d4f1d /urpme | |
parent | 54920197e4407da73174b3100988d1167dff33ff (diff) | |
download | urpmi-40425966ded63288d46d82030a4c72ba829114bb.tar urpmi-40425966ded63288d46d82030a4c72ba829114bb.tar.gz urpmi-40425966ded63288d46d82030a4c72ba829114bb.tar.bz2 urpmi-40425966ded63288d46d82030a4c72ba829114bb.tar.xz urpmi-40425966ded63288d46d82030a4c72ba829114bb.zip |
- re use strict, because nobody is better than perl
- use sub folder bug report when restart is need
- add cvs $Id$ in script
Diffstat (limited to 'urpme')
-rw-r--r-- | urpme | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ #!/usr/bin/perl +# $Id$ + # Copyright (C) 1999,2002 MandrakeSoft <pixel@linux-mandrake.com> # <fpons@mandrakesoft.com> # @@ -18,14 +20,14 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #We only make good software ;-) -#use strict; +use strict; #use strict qw(subs vars refs); use URPM; use URPM::Resolve; use urpm; -my (@nextargv, $root, $test, $parallel, $auto, $matches, $verbose, $maymatch, $usedistrib, @l); +my (@nextargv, $root, $test, $parallel, $auto, $matches, $verbose, $maymatch, $usedistrib, $force, $bug, @l); my $askok = N("Is this OK?"); # Translator: Add here the keys which might be pressed in the "No"-case. my $noexpr = N("Nn"); |