diff options
author | pad <pad@mandriva.com> | 1999-09-03 19:09:37 +0000 |
---|---|---|
committer | pad <pad@mandriva.com> | 1999-09-03 19:09:37 +0000 |
commit | cbbd92b8597a4cd4698c453fd2cf622118043c56 (patch) | |
tree | 1285a9b54be1d7517e2ac6621182962ba5ae5fbd /perl-install/printer.pm | |
parent | 7f2bd60493fd6a5830c5687d773007a3df74a914 (diff) | |
download | drakx-cbbd92b8597a4cd4698c453fd2cf622118043c56.tar drakx-cbbd92b8597a4cd4698c453fd2cf622118043c56.tar.gz drakx-cbbd92b8597a4cd4698c453fd2cf622118043c56.tar.bz2 drakx-cbbd92b8597a4cd4698c453fd2cf622118043c56.tar.xz drakx-cbbd92b8597a4cd4698c453fd2cf622118043c56.zip |
better printing support
Diffstat (limited to 'perl-install/printer.pm')
-rw-r--r-- | perl-install/printer.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/printer.pm b/perl-install/printer.pm index a6aac75bf..b86e4de61 100644 --- a/perl-install/printer.pm +++ b/perl-install/printer.pm @@ -9,7 +9,7 @@ use vars qw(%thedb %printer_type %printer_type_inv @papersize_type); # misc imports ######################################################################################## use Data::Dumper; - +use commands; ######################################################################################## # pixel imports ######################################################################################## @@ -342,7 +342,7 @@ sub copy_master_filter($) { unless ($::testing) { - cp($master_filter, $complete_path) or die "Can't copy $master_filter to $complete_path $!"; + commands::cp($master_filter, $complete_path) or die "Can't copy $master_filter to $complete_path $!"; } |