diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-20 08:34:06 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-20 08:34:06 +0000 |
commit | 21980c17bfe65eb14c8f43069678f19e1d209e08 (patch) | |
tree | e88855d9a8eed2e2a2356f40fe42c6c95a91cb0c /perl-install | |
parent | ffbb4adc77d945d66ad3cf896b998908f800b195 (diff) | |
download | drakx-backup-do-not-use-21980c17bfe65eb14c8f43069678f19e1d209e08.tar drakx-backup-do-not-use-21980c17bfe65eb14c8f43069678f19e1d209e08.tar.gz drakx-backup-do-not-use-21980c17bfe65eb14c8f43069678f19e1d209e08.tar.bz2 drakx-backup-do-not-use-21980c17bfe65eb14c8f43069678f19e1d209e08.tar.xz drakx-backup-do-not-use-21980c17bfe65eb14c8f43069678f19e1d209e08.zip |
reorder modules import
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakxtv | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakxtv b/perl-install/standalone/drakxtv index 1c62b20be..83913485d 100755 --- a/perl-install/standalone/drakxtv +++ b/perl-install/standalone/drakxtv @@ -18,16 +18,16 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +use strict; use lib qw(/usr/lib/libDrakX); +use common; use standalone; #- warning, standalone must be loaded very first, for 'explanations' use interactive; -use strict; use detect_devices; use lang; use log; -use common; my $in = 'interactive'->vnew; |