diff options
author | Francois Pons <fpons@mandriva.com> | 2002-03-05 16:28:09 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-03-05 16:28:09 +0000 |
commit | 8a4c9504ff51d83e48d25d2705f2797f1f99e47d (patch) | |
tree | 8eb0638b72c5b103e5b7c4f9f49a8f170a514573 /perl-install | |
parent | 501a3026fdc1d1e99e116604cdf5fb935b9d5814 (diff) | |
download | drakx-backup-do-not-use-8a4c9504ff51d83e48d25d2705f2797f1f99e47d.tar drakx-backup-do-not-use-8a4c9504ff51d83e48d25d2705f2797f1f99e47d.tar.gz drakx-backup-do-not-use-8a4c9504ff51d83e48d25d2705f2797f1f99e47d.tar.bz2 drakx-backup-do-not-use-8a4c9504ff51d83e48d25d2705f2797f1f99e47d.tar.xz drakx-backup-do-not-use-8a4c9504ff51d83e48d25d2705f2797f1f99e47d.zip |
fix duplicate synthesis.hdlist.xxx file present in /var/lib/urpmi, and
furthermore uncompressed :-(
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 934e7aa09..5fc19c3d5 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -521,7 +521,7 @@ sub install_urpmi { close LIST; #- build synthesis file if there are still not existing (ie not copied from mirror). - if (-s "$prefix/var/lib/urpmi/synthesis.$name.cz" <= 32) { + if (-s "$prefix/var/lib/urpmi/synthesis.hdlist.$name.cz" <= 32) { run_program::rooted($prefix, "parsehdlist", ">", "/var/lib/urpmi/synthesis.hdlist.$name", "--synthesis", "/var/lib/urpmi/hdlist.$name.cz"); run_program::rooted($prefix, "gzip", "-S", ".cz", "/var/lib/urpmi/synthesis.hdlist.$name"); |