diff options
author | Francois Pons <fpons@mandriva.com> | 2003-07-31 15:51:59 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-07-31 15:51:59 +0000 |
commit | 629de6b8fa6e64536889a44f222505bd0b12d631 (patch) | |
tree | f919818820d07ce46933a277bc57682079edef6c | |
parent | 4e4f0abc763fd0a3d8a7582fececabb820d6c9df (diff) | |
download | urpmi-629de6b8fa6e64536889a44f222505bd0b12d631.tar urpmi-629de6b8fa6e64536889a44f222505bd0b12d631.tar.gz urpmi-629de6b8fa6e64536889a44f222505bd0b12d631.tar.bz2 urpmi-629de6b8fa6e64536889a44f222505bd0b12d631.tar.xz urpmi-629de6b8fa6e64536889a44f222505bd0b12d631.zip |
disable split of transaction when used with --synthesis.
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -732,6 +732,8 @@ sub configure { $options{media} || $options{excludemedia} || $options{sortmedia} || $options{update} || $options{parallel} and $urpm->{fatal}(1, N("--synthesis cannot be used with --media, --excludemedia, --sortmedia, --update or --parallel")); $urpm->parse_synthesis($options{synthesis}); + #- synthesis disable the split of transaction (too risky and not usefull). + $urpm->{options}{'split-length'} = 0; } } else { $urpm->read_config(%options); |