diff options
author | Francois Pons <fpons@mandriva.com> | 1999-11-09 18:13:02 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 1999-11-09 18:13:02 +0000 |
commit | eb53575902c0282896e92d7d6d76a89bca420e5a (patch) | |
tree | 687b110952d0dbed96b1aaaf26fefdfaaf048726 /perl-install/commands.pm | |
parent | ece0a28a0aeea4c28976b3c842cb53aa6bc5fb39 (diff) | |
download | drakx-backup-do-not-use-eb53575902c0282896e92d7d6d76a89bca420e5a.tar drakx-backup-do-not-use-eb53575902c0282896e92d7d6d76a89bca420e5a.tar.gz drakx-backup-do-not-use-eb53575902c0282896e92d7d6d76a89bca420e5a.tar.bz2 drakx-backup-do-not-use-eb53575902c0282896e92d7d6d76a89bca420e5a.tar.xz drakx-backup-do-not-use-eb53575902c0282896e92d7d6d76a89bca420e5a.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r-- | perl-install/commands.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm index 120aa99b4..26d2a7eb3 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -497,12 +497,12 @@ sub lspci { } sub dmesg { print cat_("/tmp/syslog"); } -my %cached_failed_install_cpio; +#my %cached_failed_install_cpio; #- double space between sub and install_cpio cuz install_cpio is not a shell command sub install_cpio($$) { my ($dir, $name) = @_; - return if $cached_failed_install_cpio{"$dir $name"}; +# return if $cached_failed_install_cpio{"$dir $name"}; return "$dir/$name" if -e "$dir/$name"; my $cpio = "$dir.cpio.bz2"; @@ -514,7 +514,7 @@ sub install_cpio($$) { run_program::run("cd $dir ; bzip2 -cd $cpio | cpio -id $name $name/*"); #- not found, cache result - return if $cached_failed_install_cpio{"$dir $name"} = ! -e "$dir/$name"; +# return if $cached_failed_install_cpio{"$dir $name"} = ! -e "$dir/$name"; "$dir/$name"; } |